diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2025-11-09 04:52:01 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2025-11-09 04:52:01 -0700 |
| commit | 67f8024c58eeb75cf4203371010021000440af06 (patch) | |
| tree | 30705bc32e142ec5104fce053a053fc8a90bd8d9 /modules/home-manager | |
| parent | 6c0429a7e7f2ec2ab45a059ee86ab065fca77e97 (diff) | |
home-manager cannot support simultaneous adding and importing themes
Diffstat (limited to 'modules/home-manager')
| -rw-r--r-- | modules/home-manager/helix.nix | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/home-manager/helix.nix b/modules/home-manager/helix.nix index cbcd6c0..604a44e 100644 --- a/modules/home-manager/helix.nix +++ b/modules/home-manager/helix.nix @@ -1,20 +1,20 @@ { pkgs, inputs, ... }: { # https://github.com/catppuccin/helix - xdg.configFile."helix/themes".source = "${inputs.catppuccin-helix}/themes/default"; + # xdg.configFile."helix/themes".source = "${inputs.catppuccin-helix}/themes/default"; programs.helix = { enable = true; package = pkgs.helix; # defaultEditor = true; - # themes = { - # custom = { - # "inherits" = "catpuccin_mocha"; - # "ui.background" = {}; - # }; - # }; + themes = { + catppuccin_mocha_transparent = { + "inherits" = "catppuccin_mocha"; + "ui.background" = {}; + }; + }; settings = { - # theme = "catppuccin_mocha"; - theme = "base16_transparent"; + theme = "catppuccin_mocha_transparent"; + # theme = "base16_transparent"; editor = { line-number = "relative"; cursorline = true; |
