some refactoring and theme changes
This commit is contained in:
parent
2510c29d62
commit
eecf37a9b3
10 changed files with 528 additions and 357 deletions
8
after/plugin/remaps.lua
Normal file
8
after/plugin/remaps.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float, { desc = 'Open floating diagnostic message' })
|
||||
vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostics list' })
|
||||
vim.keymap.set('n', 'X', function()
|
||||
vim.diagnostic.goto_prev { severity = vim.diagnostic.severity.ERROR }
|
||||
end, { desc = 'Go to previous diagnostic message' })
|
||||
vim.keymap.set('n', 'Z', function()
|
||||
vim.diagnostic.goto_next { severity = vim.diagnostic.severity.ERROR }
|
||||
end, { desc = 'Go to next diagnostic message' })
|
||||
Loading…
Add table
Add a link
Reference in a new issue