nix-community.nixvim/tests/test-sources/plugins/ui/twilight.nix
2024-03-19 10:34:26 +01:00

32 lines
585 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 = [];
};
};
};
};
}