diff options
Diffstat (limited to 'modules/home-manager/helix.nix')
| -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; |
