Merge pull request #66992 from oxij/nixos/fix-zsh-prompt

nixos: zsh: setopt prompt_sp to workaround a zsh bug
This commit is contained in:
Matthew Bauer
2019-08-20 13:20:30 -04:00
committed by GitHub

View File

@@ -70,7 +70,7 @@ in
promptInit = mkOption {
default = ''
if [ "$TERM" != dumb ]; then
autoload -U promptinit && promptinit && prompt walters
autoload -U promptinit && promptinit && prompt walters && setopt prompt_sp
fi
'';
description = ''