diff options
author | Starfall <us@starfall.systems> | 2021-02-08 15:12:58 -0600 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2021-02-08 15:14:01 -0600 |
commit | 08877cc2308caaafd4acaf8ee4667c93050d3509 (patch) | |
tree | 9788b0e0f57a9ce8f86d8e9551a012cb6b1ade36 /.config/zsh | |
parent | 6588c6ce71e5be332308ae7bdfa97e8eaa081e9e (diff) |
zsh: use color names instead of numbers in vcs_info
Diffstat (limited to '.config/zsh')
-rw-r--r-- | .config/zsh/.zshrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index a845f39..ab639f9 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -100,8 +100,8 @@ function spacetotab () { setopt prompt_subst autoload -Uz vcs_info zstyle ':vcs_info:*' enable git -zstyle ':vcs_info:*' actionformats '%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f ' -zstyle ':vcs_info:*' formats '%F{5}[%F{2}%b%F{5}]%f ' +zstyle ':vcs_info:*' actionformats '%F{purple}[%F{green}%b%F{olive}|%F{red}%a%F{purple}]%f ' +zstyle ':vcs_info:*' formats '%F{purple}[%F{green}%b%F{purple}]%f ' precmd () { vcs_info } user="%n" |