From 83e9630ce42986d098abd0bc77d42c03b8594508 Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Sat, 4 Jul 2026 12:49:32 -0400 Subject: zsh linux and zsh darwin, also add some tools for linux --- zsh.nix | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 zsh.nix (limited to 'zsh.nix') diff --git a/zsh.nix b/zsh.nix deleted file mode 100644 index 5c25b07..0000000 --- a/zsh.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ - config, - pkgs, - ... -}: { - programs.zsh = { - enable = true; - 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)" - eval "$(zoxide init zsh)" - - setopt autocd extendedglob nomatch notify - - bindkey -v - export KEYTIMEOUT=20 - ''; - }; -} -- cgit v1.3.1