From 9322d6bbe8ee243462e14b92fbd7d8e7ee99a819 Mon Sep 17 00:00:00 2001 From: Erin Date: Sat, 15 Oct 2022 20:49:32 -0400 Subject: [PATCH] zsh: named dirs shouldn't be with prompt --- zsh/.zshrc | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 3b08b78..20612b8 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -51,6 +51,13 @@ alias copy='clip' alias code='code -r' function mkcd { mkdir -p $1 && cd $1 } +# Set named directories to shorten path display on non-remote systems +if [ -z "$is_remote" ]; then + hash -d gh=~/src/github.com + hash -d gl=~/src/gitlab.com + hash -d gist=~/src/gist.github.com +fi + # Prompt stuff setopt PROMPT_SUBST @@ -60,7 +67,6 @@ if [ -n "$IS_REMOTE_SESSION" ] || [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; the else is_remote= fi -# export is_remote export IS_REMOTE_SESSION=$is_remote # Function to get the current branch name @@ -68,13 +74,6 @@ function parse_git_branch { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' -e 's/((/(/' -e 's/))/)/' } -# Set named directories to shorten path display on non-remote systems -if [ -z "$is_remote" ]; then - hash -d gh=~/src/github.com - hash -d gl=~/src/gitlab.com - hash -d gist=~/src/gist.github.com -fi - # Prompt shows hostname if connected to a remote or if root PROMPT="%B$([ -n "$is_remote" ] || [ "$EUID" = 0 ] && echo "%F{magenta}%m%f ")%F{$([ "$EUID" = 0 ] && echo "red" || echo "cyan")}%n%f %F{blue}%~%f%b\$(parse_git_branch) %B%#%b "