projects
/
dotfiles_nvim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
506fa2b
)
add: hover line diagnostics
master
author
Lukas Hägele
<lukas.haegele93@web.de>
Wed, 28 Jan 2026 10:08:34 +0000
(11:08 +0100)
committer
Lukas Hägele
<lukas.haegele93@web.de>
Wed, 28 Jan 2026 10:08:34 +0000
(11:08 +0100)
lua/config/plugins/lsp.lua
patch
|
blob
|
history
diff --git
a/lua/config/plugins/lsp.lua
b/lua/config/plugins/lsp.lua
index 5a9b1ed6f8b4d443dcee70deabf2c6a833e8e2e3..bf39eceed576c8faa94190a317c95c3cd64534e7 100644
(file)
--- 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", "<M-w>", 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
})