feat(programs/neovim): set tab to indent
This commit is contained in:
parent
b09ffa3cd3
commit
8633cc8ba5
1 changed files with 4 additions and 0 deletions
|
@ -75,6 +75,10 @@ vim.keymap.set("n", "<leader>t", "<Cmd>Neotree reveal<CR>")
|
|||
-- lsp keybindings
|
||||
vim.keymap.set("n", "<leader>cd", vim.diagnostic.open_float)
|
||||
|
||||
-- indent/dedent lines in visual mode
|
||||
vim.keymap.set("v", "<tab>", ">gv")
|
||||
vim.keymap.set("v", "<S-tab>", "<gv")
|
||||
|
||||
-- show lsp messages inline
|
||||
vim.diagnostic.config({
|
||||
virtual_text = true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue