Added trouble.nix

This commit is contained in:
EsVagy42 2026-03-10 22:52:37 +01:00
parent 3a084e5a31
commit 93adddcc65
2 changed files with 15 additions and 0 deletions

View file

@ -19,6 +19,7 @@
./lualine.nix ./lualine.nix
./noice.nix ./noice.nix
./catppuccin.nix ./catppuccin.nix
./trouble.nix
]; ];
opts = { opts = {
number = true; number = true;

14
config/trouble.nix Normal file
View file

@ -0,0 +1,14 @@
{
plugins.trouble = {
enable = true;
luaConfig.pre = ''
opts = {
modes = {
lsp = {
win = { position = "right" },
},
},
}
'';
};
}