diff options
author | Jasper Ras <jras@hostnet.nl> | 2024-11-29 16:41:40 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2024-11-29 16:41:40 +0100 |
commit | c2e7c5365c80d70c51fa30d7a5833e897d459b74 (patch) | |
tree | e64864b5af672fe6cca37535f50046655284f1a1 /home-manager/common.nix | |
parent | f61252fec9aa3b8deb98d3a7c79f54cc88a80ea6 (diff) |
theming/styling stuff
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 = { |