From 54657feb40b32fd8765636cac1285a8cae7670ea Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Mon, 29 Jun 2026 12:10:41 -0400 Subject: parity with bash for darwin zsh --- zsh.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/zsh.nix b/zsh.nix index 8559a56..d4ec73b 100644 --- a/zsh.nix +++ b/zsh.nix @@ -8,12 +8,21 @@ enableAutosuggestions = true; enableBashCompletion = true; enableCompletion = true; + enableGlobalCompInit = true; enableFastSyntaxHighlighting = true; enableFzfCompletion = true; enableFzfGit = true; enableFzfHistory = true; + histFile = "$HOME/.zsh_history"; + histSize = 100000; + promptInit = '' + PROMPT=$'%{\e[97m%}[%{\e[m%}%{\e[92m%}%n%{\e[m%}%{\e[32m%}@%{\e[m%}%{\e[92m%}%m%{\e[m%}:%{\e[92m%}%~%{\e[m%}%{\e[97m%}]%{\e[m%}%{\e[97m%}%#%{\e[m%} ' + ''; interactiveShellInit = '' eval "$(direnv hook zsh)" + + bindkey -v + export KEYTIMEOUT=1 ''; }; } -- cgit v1.3.1