From 1fda58b5f033ab7f164e4c31738bd42fae9208bd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lukas=20H=C3=A4gele?= Date: Wed, 28 Jan 2026 11:08:34 +0100 Subject: [PATCH] add: hover line diagnostics --- lua/config/plugins/lsp.lua | 1 + 1 file changed, 1 insertion(+) 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 }) -- 2.39.5