mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 16:20:06 +00:00
Merge pull request #242 from dritter/fix_actionformat_color
Fix configurability of actionformat color
This commit is contained in:
commit
b6e8e20b65
2 changed files with 7 additions and 2 deletions
|
@ -10,6 +10,11 @@ POWERLEVEL9K_VCS_CLEAN_FOREGROUND='cyan'
|
||||||
POWERLEVEL9K_VCS_CLEAN_BACKGROUND='white'
|
POWERLEVEL9K_VCS_CLEAN_BACKGROUND='white'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The foreground color of actionformat is now configurable via:
|
||||||
|
```zsh
|
||||||
|
POWERLEVEL9K_VCS_ACTIONFORMAT_FOREGROUND='green'
|
||||||
|
```
|
||||||
|
|
||||||
### `aws_eb_env` added
|
### `aws_eb_env` added
|
||||||
|
|
||||||
This segment displays the current Elastic Beanstalk environment.
|
This segment displays the current Elastic Beanstalk environment.
|
||||||
|
|
|
@ -778,6 +778,7 @@ prompt_todo() {
|
||||||
|
|
||||||
# VCS segment: shows the state of your repository, if you are in a folder under
|
# VCS segment: shows the state of your repository, if you are in a folder under
|
||||||
# version control
|
# version control
|
||||||
|
set_default POWERLEVEL9K_VCS_ACTIONFORMAT_FOREGROUND "red"
|
||||||
prompt_vcs() {
|
prompt_vcs() {
|
||||||
autoload -Uz vcs_info
|
autoload -Uz vcs_info
|
||||||
|
|
||||||
|
@ -791,7 +792,6 @@ prompt_vcs() {
|
||||||
'clean' 'green'
|
'clean' 'green'
|
||||||
'modified' 'yellow'
|
'modified' 'yellow'
|
||||||
'untracked' 'green'
|
'untracked' 'green'
|
||||||
'actionformat' 'red'
|
|
||||||
)
|
)
|
||||||
|
|
||||||
VCS_CHANGESET_PREFIX=''
|
VCS_CHANGESET_PREFIX=''
|
||||||
|
@ -811,7 +811,7 @@ prompt_vcs() {
|
||||||
VCS_DEFAULT_FORMAT="$VCS_CHANGESET_PREFIX%b%c%u%m"
|
VCS_DEFAULT_FORMAT="$VCS_CHANGESET_PREFIX%b%c%u%m"
|
||||||
zstyle ':vcs_info:*' formats "$VCS_DEFAULT_FORMAT"
|
zstyle ':vcs_info:*' formats "$VCS_DEFAULT_FORMAT"
|
||||||
|
|
||||||
zstyle ':vcs_info:*' actionformats "%b %F{${vcs_states[actionformat]}}| %a%f"
|
zstyle ':vcs_info:*' actionformats "%b %F{${POWERLEVEL9K_VCS_ACTIONFORMAT_FOREGROUND}}| %a%f"
|
||||||
|
|
||||||
zstyle ':vcs_info:*' stagedstr " $(print_icon 'VCS_STAGED_ICON')"
|
zstyle ':vcs_info:*' stagedstr " $(print_icon 'VCS_STAGED_ICON')"
|
||||||
zstyle ':vcs_info:*' unstagedstr " $(print_icon 'VCS_UNSTAGED_ICON')"
|
zstyle ':vcs_info:*' unstagedstr " $(print_icon 'VCS_UNSTAGED_ICON')"
|
||||||
|
|
Loading…
Reference in a new issue