mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
36 lines
628 B
Nix
36 lines
628 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.twilight.enable = true;
|
||
|
};
|
||
|
|
||
|
defaults = {
|
||
|
plugins = {
|
||
|
treesitter.enable = true;
|
||
|
twilight = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
dimming = {
|
||
|
alpha = 0.25;
|
||
|
color = [
|
||
|
"Normal"
|
||
|
"#ffffff"
|
||
|
];
|
||
|
term_bg = "#000000";
|
||
|
inactive = false;
|
||
|
};
|
||
|
context = 10;
|
||
|
treesitter = true;
|
||
|
expand = [
|
||
|
"function"
|
||
|
"method"
|
||
|
"table"
|
||
|
"if_statement"
|
||
|
];
|
||
|
exclude = [ ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|