diff options
Diffstat (limited to 'home-manager/common.nix')
-rw-r--r-- | home-manager/common.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/home-manager/common.nix b/home-manager/common.nix index dabebe0..c72c80f 100644 --- a/home-manager/common.nix +++ b/home-manager/common.nix @@ -172,6 +172,13 @@ }; }; + home.file = { + helix-ferra = { + source = ./static/helix-wavez.toml; + target = ".config/helix/themes/wavez.toml"; + }; + }; + programs.helix = { enable = true; package = inputs.helix.packages."${pkgs.system}".helix; @@ -199,6 +206,7 @@ }; }; settings = { + theme = "wavez"; keys.normal = { space.F = "file_picker_in_current_buffer_directory"; }; @@ -236,7 +244,7 @@ program = "${pkgs.zsh}/bin/zsh"; args = [ "-l" ]; }; - } // builtins.fromJSON (builtins.readFile ./alacritty/catppuccin-frappe.json); + } // builtins.fromJSON (builtins.readFile ./static/alacritty-wavez.json); }; programs.taskwarrior = { |