about summary refs log tree commit diff
path: root/home/zsh/prompt.zsh
blob: 1c21d4b6ed4909b896d0ffa1cd710ca76467b2f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
setopt prompt_subst

PROMPT='%K{cyan}%F{black}%m%k%f %~ %% '

# For tramp (emacs).
if [ "$TERM" = "dumb" ]; then
  unset PROMPT
  PS1='$ '
  unsetopt zle
fi