colorschemes/catpuccin: fix type for option colorOverrides

This commit is contained in:
Gaetan Lepage 2023-07-12 09:30:23 +02:00 committed by Gaétan Lepage
parent 0d2a436255
commit 22306af9aa
2 changed files with 66 additions and 30 deletions

View file

@ -1,6 +1,8 @@
{
# Empty configuration
empty = {colorschemes.catppuccin.enable = true;};
empty = {
colorschemes.catppuccin.enable = true;
};
# All the upstream default options of poimandres
defaults = {
@ -47,4 +49,44 @@
};
};
};
example = {
colorschemes.catppuccin = {
enable = true;
flavour = "mocha";
terminalColors = true;
colorOverrides.mocha.base = "#1e1e2f";
integrations = {
barbar = true;
fidget = true;
gitsigns = true;
illuminate = true;
indent_blankline = {
enabled = true;
colored_indent_levels = true;
};
lsp_trouble = true;
mini = true;
native_lsp.enabled = true;
navic.enabled = true;
nvimtree = true;
overseer = true;
telescope = true;
treesitter = true;
treesitter_context = true;
ts_rainbow2 = true;
};
styles = {
booleans = ["bold" "italic"];
conditionals = ["bold"];
functions = ["bold"];
keywords = ["italic"];
loops = ["bold"];
operators = ["bold"];
properties = ["italic"];
};
};
};
}