mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-14 19:24:34 +02:00
colorschemes/catpuccin: fix type for option colorOverrides
This commit is contained in:
parent
0d2a436255
commit
22306af9aa
2 changed files with 66 additions and 30 deletions
|
@ -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"];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue