13 lines
203 B
Bash
13 lines
203 B
Bash
autoload colors zsh/terminfo
|
|
colors
|
|
|
|
precmd() { print "" }
|
|
|
|
PS1="⟩"
|
|
RPS1="%{$fg[magenta]%}%20<...<%~%<<%{$reset_color%}"
|
|
|
|
# Auto start tmux
|
|
if [ "$TMUX" = "" ]; then tmux; fi
|
|
|
|
# Auto CD
|
|
setopt auto_cd
|