nix-community.nixvim/tests/test-sources/plugins/ui/transparent.nix
2024-05-05 22:00:40 +02:00

43 lines
785 B
Nix

{
empty = {
plugins.transparent.enable = true;
};
defaults = {
plugins.transparent = {
enable = true;
settings = {
groups = [
"Normal"
"NormalNC"
"Comment"
"Constant"
"Special"
"Identifier"
"Statement"
"PreProc"
"Type"
"Underlined"
"Todo"
"String"
"Function"
"Conditional"
"Repeat"
"Operator"
"Structure"
"LineNr"
"NonText"
"SignColumn"
"CursorLine"
"CursorLineNr"
"StatusLine"
"StatusLineNC"
"EndOfBuffer"
];
extra_groups = [ ];
exclude_groups = [ ];
};
};
};
}