You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
207 B
10 lines
207 B
1 year ago
|
#!/bin/zsh
|
||
|
|
||
|
setopt prompt_subst
|
||
|
autoload -Uz vcs_info
|
||
|
precmd () { vcs_info }
|
||
|
|
||
|
# Format = [<branch>]
|
||
|
zstyle ':vcs_info:*' formats ' %F{green}[%b]%f'
|
||
|
|
||
|
PS1='%B%n@%m%b %F{blue}%2~%f${vcs_info_msg_0_} %B⇨%b '
|