about summary refs log tree commit diff
path: root/configs/zsh/init.zsh
blob: 2f791d7445e038709d27f0c9da12e65c01bba1e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Print timing statistics for everything which takes longer than 5 seconds of
# user + system time ('sleep 6' does not work because of 0% user/system time!).
REPORTTIME=5

PROMPT='%K{cyan}%F{black}%m%k%f %~%F{red}${vcs_info_msg_0_}%f %# '

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