nixos/zsh: move zsh setopt

This commit is contained in:
Izorkin
2019-06-09 00:13:01 +02:00
committed by Maximilian Bosch
parent 70de27bbb4
commit 82ad143a51
2 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -194,8 +194,6 @@ in
HISTSIZE=${toString cfg.histSize}
HISTFILE=${cfg.histFile}
${optionalString (cfg.setOptions != []) "setopt ${concatStringsSep " " cfg.setOptions}"}
HELPDIR="${pkgs.zsh}/share/zsh/$ZSH_VERSION/help"
# Tell zsh how to find installed completions
@@ -209,6 +207,8 @@ in
${cfg.interactiveShellInit}
${optionalString (cfg.setOptions != []) "setopt ${concatStringsSep " " cfg.setOptions}"}
${zshAliases}
${cfg.promptInit}