zsh: Explicitly disable prompt in user config
Otherwise starship does not work in 21.05.
This commit is contained in:
parent
091f6b0e14
commit
54288988de
|
@ -64,7 +64,11 @@ in
|
||||||
envExtra = ''
|
envExtra = ''
|
||||||
export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on"
|
export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on"
|
||||||
'';
|
'';
|
||||||
initExtra = lib.mkAfter ''
|
initExtra = lib.mkMerge [
|
||||||
|
(lib.mkBefore ''
|
||||||
|
prompt off # collides with starship
|
||||||
|
'')
|
||||||
|
(lib.mkAfter ''
|
||||||
eval $(${pkgs.coreutils}/bin/dircolors -b ${dircolors-solarized}/dircolors.ansi-universal)
|
eval $(${pkgs.coreutils}/bin/dircolors -b ${dircolors-solarized}/dircolors.ansi-universal)
|
||||||
|
|
||||||
# no sad smiley (starship shows exit status)
|
# no sad smiley (starship shows exit status)
|
||||||
|
@ -74,7 +78,8 @@ in
|
||||||
disable -p '#'
|
disable -p '#'
|
||||||
|
|
||||||
source ${../files/zsh/pass-wrappers.zsh}
|
source ${../files/zsh/pass-wrappers.zsh}
|
||||||
'';
|
'')
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue