dotfiles/.config/nvim/lua/plugins/extras/editor/trouble-extended.lua
2024-07-28 15:16:48 +02:00

23 lines
415 B
Lua

return {
"folke/trouble.nvim",
opts = {
keys = {
e = "jump",
l = "fold_open",
L = "fold_open_recursive",
h = "fold_close",
H = "fold_close_recursive",
},
modes = {
test = {
mode = "diagnostics",
preview = {
type = "split",
relative = "win",
position = "right",
size = 0.3,
},
},
},
},
}