summaryrefslogtreecommitdiffstats
path: root/zshrc
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-08-23 19:27:39 -0400
committerJesse Luehrs <doy@tozt.net>2013-08-23 19:27:52 -0400
commitbafa7b736b08de2faad9e02891c6bf2daee4321f (patch)
treed93f0f53de41e276e760ab9ca9797356a2cd8990 /zshrc
parent5dce800ea2749a3ee0de34aaafe651dfbfdf8a4f (diff)
downloadconf-bafa7b736b08de2faad9e02891c6bf2daee4321f.tar.gz
conf-bafa7b736b08de2faad9e02891c6bf2daee4321f.zip
update zsh syntax highlight colors
Diffstat (limited to 'zshrc')
-rw-r--r--zshrc16
1 files changed, 12 insertions, 4 deletions
diff --git a/zshrc b/zshrc
index c25418e..d065742 100644
--- a/zshrc
+++ b/zshrc
@@ -64,14 +64,22 @@ export KEYTIMEOUT=5
source ~/.sh/cdhist.sh
# }}}
# zsh-syntax-highlighting {{{
+ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
-ZSH_HIGHLIGHT_STYLES[path]='fg=blue,bold'
-ZSH_HIGHLIGHT_STYLES[assign]='fg=cyan'
+ZSH_HIGHLIGHT_STYLES[reserved-word]='fg=green'
+ZSH_HIGHLIGHT_STYLES[alias]='fg=green'
+ZSH_HIGHLIGHT_STYLES[builtin]='fg=green'
+ZSH_HIGHLIGHT_STYLES[function]='fg=green'
ZSH_HIGHLIGHT_STYLES[command]='fg=green'
ZSH_HIGHLIGHT_STYLES[precommand]='fg=yellow'
-ZSH_HIGHLIGHT_STYLES[builtin]='fg=yellow'
-ZSH_HIGHLIGHT_STYLES[reserved-word]='fg=yellow'
+ZSH_HIGHLIGHT_STYLES[hashed-command]='fg=green'
+ZSH_HIGHLIGHT_STYLES[path]='fg=blue,bold'
+ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=blue,underline'
+ZSH_HIGHLIGHT_STYLES[path_approx]='underline'
ZSH_HIGHLIGHT_STYLES[globbing]='fg=magenta'
+ZSH_HIGHLIGHT_STYLES[history-expansion]='none'
+ZSH_HIGHLIGHT_STYLES[back-quoted-argument]='fg=green'
+ZSH_HIGHLIGHT_STYLES[assign]='fg=cyan'
# }}}
# }}}
# prompt {{{