nixos/pkgs/nixvim/editor/trouble.nix

35 lines
661 B
Nix
Raw Normal View History

2025-07-13 06:04:55 +08:00
{ ... }:
{
2025-07-13 06:04:55 +08:00
youthlic.plugins.trouble = {
enable = true;
settings = {
modes = {
lsp = {
win = {
position = "right";
};
};
preview_float = {
mode = "diagnostics";
preview = {
type = "float";
relative = "editor";
border = "rounded";
title = "Preview";
title_pos = "center";
2025-07-13 06:04:55 +08:00
position = [
0
(-2)
];
2025-07-13 06:04:55 +08:00
size = {
width = 0.3;
height = 0.3;
};
zindex = 200;
};
};
};
};
};
}