diff --git a/.config/zsh/plugins.sh b/.config/zsh/plugins.sh index 4749f24..c1d19c5 100644 --- a/.config/zsh/plugins.sh +++ b/.config/zsh/plugins.sh @@ -8,7 +8,13 @@ ZSH_AUTOSUGGEST_STRATEGY=(history completion) # Prompt configPrompt() { - PROMPT="[%c] " + case $(uname -n) in + "Noahs-M3-MacBook-Pro.local") PROMPT_EMOJI="🌊";; + "Noahs-Mac-mini.local") PROMPT_EMOJI="🗜️";; + *) PROMPT_EMOJI="😵‍💫";; + esac + + PROMPT="$PROMPT_EMOJI [%c] " RPROMPT="$(git_super_status)" }