diff --git a/lib/preconfiguredModules/bonvim.nix b/lib/preconfiguredModules/bonvim.nix index 0ac516e..97ce0de 100644 --- a/lib/preconfiguredModules/bonvim.nix +++ b/lib/preconfiguredModules/bonvim.nix @@ -93,36 +93,39 @@ }; # Theme - colorschemes.catppuccin = { - enable = true; - settings = { - flavour = "macchiato"; - no_bold = false; - no_italic = false; - no_underline = false; - integrations = { - cmp = true; - notify = true; - gitsigns = true; - neotree = true; - which_key = true; - illuminate = { - enabled = true; - }; - treesitter = true; - telescope.enabled = true; - indent_blankline.enabled = true; - mini.enabled = true; - native_lsp = { - enabled = true; - inlay_hints = { - background = true; + colorschemes = { + gruvbox.enable = true; + catppuccin = { + enable = false; + settings = { + flavour = "macchiato"; + no_bold = false; + no_italic = false; + no_underline = false; + integrations = { + cmp = true; + notify = true; + gitsigns = true; + neotree = true; + which_key = true; + illuminate = { + enabled = true; }; - underlines = { - errors = ["undercurl"]; - hints = ["undercurl"]; - information = ["undercurl"]; - warnings = ["undercurl"]; + treesitter = true; + telescope.enabled = true; + indent_blankline.enabled = true; + mini.enabled = true; + native_lsp = { + enabled = true; + inlay_hints = { + background = true; + }; + underlines = { + errors = ["undercurl"]; + hints = ["undercurl"]; + information = ["undercurl"]; + warnings = ["undercurl"]; + }; }; }; }; diff --git a/nixosConfigurations/astora/users.nix b/nixosConfigurations/astora/users.nix index 43fde46..aca3990 100644 --- a/nixosConfigurations/astora/users.nix +++ b/nixosConfigurations/astora/users.nix @@ -144,7 +144,7 @@ in { # Theme catppuccin = { # global, for all enabled programs - enable = true; + enable = false; flavor = "macchiato"; accent = "green"; }; diff --git a/nixosConfigurations/vinheim/users.nix b/nixosConfigurations/vinheim/users.nix index 2239f8e..e1c11c7 100644 --- a/nixosConfigurations/vinheim/users.nix +++ b/nixosConfigurations/vinheim/users.nix @@ -93,7 +93,7 @@ in { # Theme catppuccin = { # global, for all enabled programs - enable = true; + enable = false; flavor = "macchiato"; accent = "green"; };