Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
36 lines
583 B
Nix
36 lines
583 B
Nix
{
|
|
plugins = {
|
|
mini-ai.enable = true;
|
|
sleuth.enable = true;
|
|
|
|
treesitter = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
highlight = {
|
|
enable = true;
|
|
|
|
disable = [
|
|
"latex"
|
|
"markdown"
|
|
];
|
|
};
|
|
|
|
auto_install = true;
|
|
indent_enable = true;
|
|
folding = true;
|
|
autoLoad = true;
|
|
incemental_selection.enable = true;
|
|
};
|
|
};
|
|
|
|
treesitter-context = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
max_lines = 4;
|
|
min_window_height = 40;
|
|
};
|
|
};
|
|
};
|
|
}
|