diff options
| author | Cuichen Li <cuichen.li@appdynamics.com> | 2022-08-12 17:26:39 +0800 |
|---|---|---|
| committer | Will Li <cuichen.li@appdynamics.com> | 2023-07-10 15:00:02 +0800 |
| commit | 8364529fc49f35294c2fcc23f7caa0becd6e5cdf (patch) | |
| tree | 9e6476adcf8bd891a5c5488a3ab4f63ffbf2aee1 /modules/programs/zsh | |
| parent | 66a3047fa88eb6aa5c5a2e675de91f0431fbe561 (diff) | |
fix zsh eating output without new line ending
Diffstat (limited to 'modules/programs/zsh')
| -rw-r--r-- | modules/programs/zsh/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/programs/zsh/default.nix b/modules/programs/zsh/default.nix index 4eb4059..d26da0e 100644 --- a/modules/programs/zsh/default.nix +++ b/modules/programs/zsh/default.nix @@ -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."; }; |
