nix-community.nixvim/tests/test-sources/plugins/ui/transparent.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
785 B
Nix
Raw Normal View History

2024-03-12 01:07:21 +01:00
{
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 = [ ];
};
};
};
}