add trouble

side note? why was I using feat and chore and etc?
This commit is contained in:
Zoty 2026-04-07 11:46:51 -03:00
parent af16bba334
commit d65c4083ba
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
9 changed files with 80 additions and 46 deletions

View file

@ -19,6 +19,9 @@ vim.api.nvim_create_autocmd("LspAttach", {
vim.keymap.set("n", "<leader>for", function()
vim.lsp.buf.format({ async = true })
end, opts)
vim.keymap.set("n", "<leader>e", vim.diagnostic.open_float, opts)
vim.keymap.set("n", "[d", function() vim.diagnostic.jump({ count = -1 }) end)
vim.keymap.set("n", "]d", function() vim.diagnostic.jump({ count = 1 }) end)
end,
})