addet indent blankline options and addet recent telescope keybinding to sR
This commit is contained in:
parent
1bce98394d
commit
506d83e23a
2 changed files with 15 additions and 7 deletions
|
@ -1,8 +1,13 @@
|
||||||
return {
|
return {
|
||||||
"lukas-reineke/indent-blankline.nvim",
|
"lukas-reineke/indent-blankline.nvim",
|
||||||
event = { "BufReadPre", "BufNewFile" },
|
event = { "BufReadPre", "BufNewFile" },
|
||||||
main = "ibl",
|
main = "ibl",
|
||||||
opts = {
|
opts = {
|
||||||
indent = { char = "┊" },
|
indent = {
|
||||||
},
|
char = "┊",
|
||||||
|
tab_char = "┊",
|
||||||
|
-- char = "│",
|
||||||
|
-- tab_char = "│",
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,7 +45,10 @@ return {
|
||||||
-- map("n", "<leader>sr", builtin.resume, { desc = "[S]earch [R]esume" })
|
-- map("n", "<leader>sr", builtin.resume, { desc = "[S]earch [R]esume" })
|
||||||
map("n", "<leader>s.", builtin.oldfiles, { desc = '[S]earch Recent Files ("." for repeat)' })
|
map("n", "<leader>s.", builtin.oldfiles, { desc = '[S]earch Recent Files ("." for repeat)' })
|
||||||
map("n", "<leader><leader>", builtin.buffers, { desc = "[ ] Find existing buffers" })
|
map("n", "<leader><leader>", builtin.buffers, { desc = "[ ] Find existing buffers" })
|
||||||
map("n", "<leader>T", "<cmd>Telescope colorscheme<CR>")
|
map("n", "<leader>sR", function()
|
||||||
|
require("telescope.builtin").oldfiles()
|
||||||
|
end)
|
||||||
|
map("n", "<leader>T", "<cmd>Telescope colorscheme<CR>")
|
||||||
map("n", "<leader>q", vim.cmd.q)
|
map("n", "<leader>q", vim.cmd.q)
|
||||||
|
|
||||||
-- Additional custom mappings
|
-- Additional custom mappings
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue