mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
30 lines
573 B
Nix
30 lines
573 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 = null;
|
|
zindex = 20;
|
|
on_attach = null;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|