nixvim/config/trouble.nix
2026-03-10 22:52:37 +01:00

14 lines
206 B
Nix

{
plugins.trouble = {
enable = true;
luaConfig.pre = ''
opts = {
modes = {
lsp = {
win = { position = "right" },
},
},
}
'';
};
}