nix-community.nixvim/tests/test-sources/plugins/utils/ccc.nix

21 lines
321 B
Nix
Raw Normal View History

2024-04-02 13:24:07 +02:00
{
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;
};
};
};
};
}