configs/neovim: add keymaps for diag info

This commit is contained in:
Aaron Bieber 2023-05-02 19:40:44 -06:00
parent 5bc75bd346
commit d5c9692c0f
No known key found for this signature in database

View File

@ -101,3 +101,9 @@ vim.keymap.set('n', '<leader>fh', builtin.help_tags, {})
vim.g["vim_markdown_folding_disabled"] = 1
vim.g["elm_setup_keybindings"] = 0
vim.keymap.set('n', '<space>e', vim.diagnostic.open_float)
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev)
vim.keymap.set('n', ']d', vim.diagnostic.goto_next)
vim.keymap.set('n', '<space>q', vim.diagnostic.setloclist)