10 lines
173 B
Bash
Executable File
10 lines
173 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
#git
|
|
|
|
autoload -Uz vcs_info
|
|
precmd_vcs_info() { vcs_info }
|
|
precmd_functions+=( precmd_vcs_info )
|
|
setopt prompt_subst
|
|
zstyle ':vcs_info:git:*' formats '[ %b]'
|