preconfiguredModules.bonvim: change colorscheme (catppuccin -> gruvbox)

astora: disable catppuccin colorscheme
vinheim: disable catppuccin colorscheme
This commit is contained in:
L-Nafaryus 2024-12-19 00:28:16 +05:00
parent 1158fee91e
commit de55921ea8
Signed by: L-Nafaryus
GPG Key ID: 553C97999B363D38
3 changed files with 34 additions and 31 deletions

View File

@ -93,36 +93,39 @@
}; };
# Theme # Theme
colorschemes.catppuccin = { colorschemes = {
enable = true; gruvbox.enable = true;
settings = { catppuccin = {
flavour = "macchiato"; enable = false;
no_bold = false; settings = {
no_italic = false; flavour = "macchiato";
no_underline = false; no_bold = false;
integrations = { no_italic = false;
cmp = true; no_underline = false;
notify = true; integrations = {
gitsigns = true; cmp = true;
neotree = true; notify = true;
which_key = true; gitsigns = true;
illuminate = { neotree = true;
enabled = true; which_key = true;
}; illuminate = {
treesitter = true; enabled = true;
telescope.enabled = true;
indent_blankline.enabled = true;
mini.enabled = true;
native_lsp = {
enabled = true;
inlay_hints = {
background = true;
}; };
underlines = { treesitter = true;
errors = ["undercurl"]; telescope.enabled = true;
hints = ["undercurl"]; indent_blankline.enabled = true;
information = ["undercurl"]; mini.enabled = true;
warnings = ["undercurl"]; native_lsp = {
enabled = true;
inlay_hints = {
background = true;
};
underlines = {
errors = ["undercurl"];
hints = ["undercurl"];
information = ["undercurl"];
warnings = ["undercurl"];
};
}; };
}; };
}; };

View File

@ -144,7 +144,7 @@ in {
# Theme # Theme
catppuccin = { catppuccin = {
# global, for all enabled programs # global, for all enabled programs
enable = true; enable = false;
flavor = "macchiato"; flavor = "macchiato";
accent = "green"; accent = "green";
}; };

View File

@ -93,7 +93,7 @@ in {
# Theme # Theme
catppuccin = { catppuccin = {
# global, for all enabled programs # global, for all enabled programs
enable = true; enable = false;
flavor = "macchiato"; flavor = "macchiato";
accent = "green"; accent = "green";
}; };