nix-community.nixvim/tests/test-sources/plugins/utils/ccc.nix
2024-04-02 13:24:07 +02:00

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;
};
};
};
};
}