nix-community.nixvim/tests/test-sources/plugins/by-name/twilight/default.nix

36 lines
628 B
Nix
Raw Normal View History

2024-03-16 01:23:02 +01:00
{
empty = {
plugins.twilight.enable = true;
};
defaults = {
plugins = {
treesitter.enable = true;
twilight = {
enable = true;
settings = {
dimming = {
alpha = 0.25;
2024-05-05 19:39:35 +02:00
color = [
"Normal"
"#ffffff"
];
2024-03-16 01:23:02 +01:00
term_bg = "#000000";
inactive = false;
};
context = 10;
treesitter = true;
expand = [
"function"
"method"
"table"
"if_statement"
];
2024-05-05 19:39:35 +02:00
exclude = [ ];
2024-03-16 01:23:02 +01:00
};
};
};
};
}