mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 15:34:40 +01:00
9 lines
394 B
Bash
9 lines
394 B
Bash
autoload -Uz vcs_info
|
||
zstyle ':vcs_info:*' enable git hg
|
||
zstyle ':vcs_info:*' stagedstr "%F{red}±%f"
|
||
zstyle ':vcs_info:*' unstagedstr "%F{yellow}≠%f"
|
||
zstyle ':vcs_info:*' check-for-changes true
|
||
zstyle ':vcs_info:*' formats "%c%u %F{green}%S%f‹%F{blue}%b%f‹%F{yellow}%r%f"
|
||
zstyle ':vcs_info:*' actionformats "%F{red}%a%f %c%u %F{green}%S%f‹%F{blue}%b%f‹%F{yellow}%r%f"
|
||
|
||
# vim: ft=zsh
|