nvim bump + switch from packer -> lazy

This commit is contained in:
agryphus 2024-12-11 14:54:20 -05:00
parent cc99d55125
commit c28dd3e9a9
12 changed files with 209 additions and 203 deletions

View file

@ -59,11 +59,13 @@ cmp.setup({
}
})
-- DIAGNOSTICS
-- Show all diagnostics on current line in floating window
vim.api.nvim_set_keymap(
'n', 'gl', ':lua vim.diagnostic.open_float()<CR>',
{ noremap = true, silent = true }
)
vim.keymap.set("n", "gl", ":lua vim.diagnostic.open_float()<CR>",
{ noremap = true, silent = true })
vim.keymap.set("n", "<leader>le", ":LspStop<CR>",
{ desc = "LSP Stop" })
vim.keymap.set("n", "<leader>ls", ":LspStart<CR>",
{ desc = "LSP Start" })