mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
43 lines
785 B
Nix
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 = [ ];
|
|
};
|
|
};
|
|
};
|
|
}
|