diff options
-rw-r--r-- | zsh/.zshrc | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,8 +1,9 @@ if [[ ${TERM} = "dumb" ]]; then - echo "No zsh setup" - exit 0 + # This fixes TRAMP. + echo "Skip zsh setup" + unsetopt zle + return 0 fi - # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. # Initialization code that may require console input (password prompts, [y/n] # confirmations, etc.) must go above this block; everything else may go below. |