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