Change zsh comment color to white

This commit is contained in:
flyingscorpio@arch-desktop 2021-02-25 11:42:57 +01:00
parent 737789b991
commit b0a62aaf48

View file

@ -78,10 +78,15 @@ source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
# SYNTAX HIGHLIGHTING AND AUTOSUGGESTIONS
# There is a bug making the two plugins not work together. It has been fixed upstream but at the time of writing the Arch package hasn't pulled it yet.
# AUTOSUGGESTIONS
# There is a bug making the syntax highlighting and autosuggestions plugins not work together.
# It has been fixed upstream but at the time of writing the Arch package hasn't pulled it yet.
source "$HOME/git_clones/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh" # when using git
#source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh # when using Arch package
# SYNTAX HIGHLIGHTING
typeset -A ZSH_HIGHLIGHT_STYLES
ZSH_HIGHLIGHT_STYLES[comment]='fg=white,bold'
# The following line MUST be at the end of this file!
source "$HOME/git_clones/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh" # when using git
#source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh # when using Arch package