fix some lsp stuff for quick fix support

This commit is contained in:
kossLAN 2025-01-25 01:10:20 -05:00
parent 7804ae3939
commit f3f07ab618
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
5 changed files with 39 additions and 7 deletions

View file

@ -57,9 +57,6 @@ vim.api.nvim_set_keymap(
{ noremap = true, silent = true, desc = 'debugger [r]epl' }
)
-- LSP Fix
vim.keymap.set('n', '<leader>f', vim.lsp.buf.code_action, { noremap = true, silent = true, desc = 'Code Action' })
-- Window Resizing
vim.keymap.set('n', '<C-Left>', '<cmd>vertical resize -2<CR>', { noremap = true, silent = true })
vim.keymap.set('n', '<C-Right>', '<cmd>vertical resize +2<CR>', { noremap = true, silent = true })