mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
44 lines
783 B
Nix
44 lines
783 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 = [];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|