1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-17 07:52:47 +01:00
nixvim/tests/test-sources/plugins/by-name/treesitter-context/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

30 lines
581 B
Nix

{
empty = {
plugins = {
treesitter.enable = true;
treesitter-context.enable = true;
};
};
default = {
plugins = {
treesitter.enable = true;
treesitter-context = {
enable = true;
settings = {
enable = true;
max_lines = 0;
min_window_height = 0;
line_numbers = true;
multiline_threshold = 20;
trim_scope = "outer";
mode = "cursor";
separator.__raw = "nil";
zindex = 20;
on_attach = "nil";
};
};
};
};
}