nixos: zsh: setopt prompt_sp to workaround a zsh bug
See #38535, properly fixing the prompt seems complicated, and this seems to work in all the ttys I checked. Suggested by @Mic92.
This commit is contained in:
parent
c0e56afddb
commit
065c6ed96e
1 changed files with 1 additions and 1 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue