mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 18:43:50 -03:00
chore: remove ecolog, i don't use it
This commit is contained in:
parent
c48f8a2b92
commit
1020911f18
7 changed files with 164 additions and 105 deletions
|
@ -5,8 +5,13 @@ local M = {
|
|||
|
||||
local function setup_keymaps(trouble)
|
||||
-- Diagnostic navigation
|
||||
nmap("[d", vim.diagnostic.goto_prev, { desc = "Previous diagnostic" })
|
||||
nmap("]d", vim.diagnostic.goto_next, { desc = "Next diagnostic" })
|
||||
nmap("[d", function()
|
||||
vim.diagnostic.jump({ count = -1, float = true })
|
||||
end, { desc = "Previous diagnostic" })
|
||||
|
||||
nmap("]d", function()
|
||||
vim.diagnostic.jump({ count = 1, float = true })
|
||||
end, { desc = "Next diagnostic" })
|
||||
|
||||
-- Trouble specific navigation
|
||||
nmap("<a-k>", function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue