Add keybindings to enable, disable and toggle
...diagnostics
This commit is contained in:
parent
f94bf1e883
commit
e3a11b8d06
|
@ -124,3 +124,11 @@ vim.api.nvim_create_autocmd("LspAttach", {
|
||||||
vim.keymap.set("n", "<space>ca", vim.lsp.buf.code_action, { buffer = 0 })
|
vim.keymap.set("n", "<space>ca", vim.lsp.buf.code_action, { buffer = 0 })
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
vim.keymap.set("n", "<leader>dd", function()
|
||||||
|
vim.diagnostic.enable(false)
|
||||||
|
end)
|
||||||
|
|
||||||
|
vim.keymap.set("n", "<leader>de", function()
|
||||||
|
vim.diagnostic.enable(true)
|
||||||
|
end)
|
||||||
|
|
Loading…
Reference in a new issue