zsh: fix broken prompt detection when using ssh
Alan Pearce alan@alanpearce.eu
Wed, 07 Jun 2023 07:53:44 +0200
1 files changed, 6 insertions(+), 3 deletions(-)
jump to
M user/settings/zsh.nix → user/settings/zsh.nix
@@ -209,10 +209,13 @@ fi ''; initExtraFirst = '' - if [[ -r "${config.xdg.cacheHome}/p10k-instant-prompt-''${(%):-%n}.zsh" ]]; then - source "${config.xdg.cacheHome}/p10k-instant-prompt-''${(%):-%n}.zsh" + if [[ $TERM != "dumb" ]] + then + if [[ -r "${config.xdg.cacheHome}/p10k-instant-prompt-''${(%):-%n}.zsh" ]]; then + source "${config.xdg.cacheHome}/p10k-instant-prompt-''${(%):-%n}.zsh" + fi + typeset -g POWERLEVEL9K_DISABLE_CONFIGURATION_WIZARD=true fi - typeset -g POWERLEVEL9K_DISABLE_CONFIGURATION_WIZARD=true ''; initExtra = ''