From: Lukas Hägele Date: Wed, 28 Jan 2026 10:08:34 +0000 (+0100) Subject: add: hover line diagnostics X-Git-Url: https://git.lhaegele.de/?a=commitdiff_plain;p=dotfiles_nvim.git add: hover line diagnostics --- diff --git a/lua/config/plugins/lsp.lua b/lua/config/plugins/lsp.lua index 5a9b1ed..bf39ece 100644 --- a/lua/config/plugins/lsp.lua +++ b/lua/config/plugins/lsp.lua @@ -41,6 +41,7 @@ return { builtin.diagnostics { root_dir = true } end, { buffer = 0, desc = "open diagnostics in telescope" }) vim.keymap.set("n", "", vim.diagnostic.setqflist, { desc = "open diagnostics in quickfix list" }) + vim.keymap.set("n", "ge", vim.diagnostic.open_float, { desc = "open diagnostics of current line in floating window" }) end })