Config File Collection
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

prompt_color.zsh 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # enable syntax-highlighting
  2. if [ -f $ZSH_PLUGIN_BASE/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]; then
  3. . $ZSH_PLUGIN_BASE/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  4. ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
  5. ZSH_HIGHLIGHT_STYLES[default]=none
  6. ZSH_HIGHLIGHT_STYLES[unknown-token]=fg=white,underline
  7. ZSH_HIGHLIGHT_STYLES[reserved-word]=fg=cyan,bold
  8. ZSH_HIGHLIGHT_STYLES[suffix-alias]=fg=green,underline
  9. ZSH_HIGHLIGHT_STYLES[global-alias]=fg=green,bold
  10. ZSH_HIGHLIGHT_STYLES[precommand]=fg=green,underline
  11. ZSH_HIGHLIGHT_STYLES[commandseparator]=fg=blue,bold
  12. ZSH_HIGHLIGHT_STYLES[autodirectory]=fg=green,underline
  13. ZSH_HIGHLIGHT_STYLES[path]=bold
  14. ZSH_HIGHLIGHT_STYLES[path_pathseparator]=
  15. ZSH_HIGHLIGHT_STYLES[path_prefix_pathseparator]=
  16. ZSH_HIGHLIGHT_STYLES[globbing]=fg=blue,bold
  17. ZSH_HIGHLIGHT_STYLES[history-expansion]=fg=blue,bold
  18. ZSH_HIGHLIGHT_STYLES[command-substitution]=none
  19. ZSH_HIGHLIGHT_STYLES[command-substitution-delimiter]=fg=magenta,bold
  20. ZSH_HIGHLIGHT_STYLES[process-substitution]=none
  21. ZSH_HIGHLIGHT_STYLES[process-substitution-delimiter]=fg=magenta,bold
  22. ZSH_HIGHLIGHT_STYLES[single-hyphen-option]=fg=green
  23. ZSH_HIGHLIGHT_STYLES[double-hyphen-option]=fg=green
  24. ZSH_HIGHLIGHT_STYLES[back-quoted-argument]=none
  25. ZSH_HIGHLIGHT_STYLES[back-quoted-argument-delimiter]=fg=blue,bold
  26. ZSH_HIGHLIGHT_STYLES[single-quoted-argument]=fg=yellow
  27. ZSH_HIGHLIGHT_STYLES[double-quoted-argument]=fg=yellow
  28. ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument]=fg=yellow
  29. ZSH_HIGHLIGHT_STYLES[rc-quote]=fg=magenta
  30. ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument]=fg=magenta,bold
  31. ZSH_HIGHLIGHT_STYLES[back-double-quoted-argument]=fg=magenta,bold
  32. ZSH_HIGHLIGHT_STYLES[back-dollar-quoted-argument]=fg=magenta,bold
  33. ZSH_HIGHLIGHT_STYLES[assign]=none
  34. ZSH_HIGHLIGHT_STYLES[redirection]=fg=blue,bold
  35. ZSH_HIGHLIGHT_STYLES[comment]=fg=black,bold
  36. ZSH_HIGHLIGHT_STYLES[named-fd]=none
  37. ZSH_HIGHLIGHT_STYLES[numeric-fd]=none
  38. ZSH_HIGHLIGHT_STYLES[arg0]=fg=cyan
  39. ZSH_HIGHLIGHT_STYLES[bracket-error]=fg=red,bold
  40. ZSH_HIGHLIGHT_STYLES[bracket-level-1]=fg=blue,bold
  41. ZSH_HIGHLIGHT_STYLES[bracket-level-2]=fg=green,bold
  42. ZSH_HIGHLIGHT_STYLES[bracket-level-3]=fg=magenta,bold
  43. ZSH_HIGHLIGHT_STYLES[bracket-level-4]=fg=yellow,bold
  44. ZSH_HIGHLIGHT_STYLES[bracket-level-5]=fg=cyan,bold
  45. ZSH_HIGHLIGHT_STYLES[cursor-matchingbracket]=standout
  46. fi