diff --git a/home/shell/zsh.nix b/home/shell/zsh.nix deleted file mode 100644 index 1a63170..0000000 --- a/home/shell/zsh.nix +++ /dev/null @@ -1,27 +0,0 @@ -{pkgs, ...}: { - programs.zsh = { - enable = true; - enableAutosuggestions = true; - syntaxHighlighting.enable = true; - enableCompletion = true; - sessionVariables = { - VISUAL = "micro"; - EDITOR = "micro"; - WORDCHARS = "*?_-.[]~=&;!#$%^(){}<>"; - }; - history = { - size = 1000000000; - path = "$HOME/.zsh_history"; - extended = true; - }; - initExtra = '' - bindkey -e - bindkey "^[[1;5C" forward-word - bindkey "^[[1;5D" backward-word - bindkey "^[[1;3C" forward-word - bindkey "^[[1;3D" backward-word - bindkey '^H' backward-kill-word - bindkey '5~' kill-word - ''; - }; -}