1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

fix zsh eating output without new line ending

This commit is contained in:
Cuichen Li 2022-08-12 17:26:39 +08:00 committed by Will Li
parent 66a3047fa8
commit 8364529fc4

View file

@ -54,7 +54,7 @@ in
programs.zsh.promptInit = mkOption {
type = types.lines;
default = "autoload -U promptinit && promptinit && prompt walters";
default = "autoload -U promptinit && promptinit && prompt walters && setopt prompt_sp";
description = lib.mdDoc "Shell script code used to initialise the zsh prompt.";
};