diff options
author | Justus Flerlage <justusflerlage@juteel.com> | 2017-12-08 02:41:33 +0300 |
---|---|---|
committer | Justus Flerlage <justusflerlage@juteel.com> | 2018-01-07 23:35:33 +0300 |
commit | 3a605c7f62437543dc76621a7de00796411da531 (patch) | |
tree | a7b00b355c61012359602fb86bb820df7991b066 | |
parent | 4db2eb0e1607e6b4d8097a5feb178f25357cb1c9 (diff) |
renamed POWERLEVEL9K_CHECK_TERM_COLORS to POWERLEVEL9K_IGNORE_TERM_COLORS
-rw-r--r-- | functions/colors.zsh | 2 | ||||
-rwxr-xr-x | powerlevel9k.zsh-theme | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/functions/colors.zsh b/functions/colors.zsh index 8029c727..cf06ae43 100644 --- a/functions/colors.zsh +++ b/functions/colors.zsh @@ -7,7 +7,7 @@ ################################################################ function termColors() { - if [[ $POWERLEVEL9K_CHECK_TERM_COLORS == false ]]; then + if [[ $POWERLEVEL9K_IGNORE_TERM_COLORS == true ]]; then return fi diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 50735886..ef34be96 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -1563,7 +1563,7 @@ NEWLINE=' [[ $POWERLEVEL9K_PROMPT_ADD_NEWLINE == true ]] && PROMPT="$NEWLINE$PROMPT" } -set_default POWERLEVEL9K_CHECK_TERM_COLORS true +set_default POWERLEVEL9K_IGNORE_TERM_COLORS false prompt_powerlevel9k_setup() { # The value below was set to better support 32-bit CPUs. # It's the maximum _signed_ integer value on 32-bit CPUs. |