mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
21 lines
321 B
Nix
21 lines
321 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.ccc.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.ccc = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
default_color = "#FFFFFF";
|
||
|
highlight_mode = "fg";
|
||
|
lsp = true;
|
||
|
highlighter = {
|
||
|
auto_enable = true;
|
||
|
lsp = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|