From c7985ab7fa53613dea233da41046d7e175a06f10 Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Sat, 22 Mar 2025 01:51:53 +0800 Subject: [PATCH] feat(zsh): add some zsh options --- users/modules/programs/zsh.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/users/modules/programs/zsh.nix b/users/modules/programs/zsh.nix index 89616ae..b59c51d 100644 --- a/users/modules/programs/zsh.nix +++ b/users/modules/programs/zsh.nix @@ -3,6 +3,15 @@ enable = true; enableCompletion = true; enableVteIntegration = true; + dirHashes = { + repos = "$HOME/GitRepos"; + dl = "$HOME/Downloads"; + }; + initContent = # zsh + '' + # Bind CTRL+Backspace to delete whole word + bindkey '^H' backward-kill-word + ''; # TODO: Look into whether we need to add the history attribute profileExtra = # bash ''