-
Notifications
You must be signed in to change notification settings - Fork 278
/
plugins_after.zsh
37 lines (31 loc) · 1.45 KB
/
plugins_after.zsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# External plugins (initialized after)
# Syntax highlighting
source ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
if [[ "$(tput colors)" == "256" ]]; then
ZSH_HIGHLIGHT_STYLES[default]=none
ZSH_HIGHLIGHT_STYLES[unknown-token]=fg=160
ZSH_HIGHLIGHT_STYLES[reserved-word]=fg=037,bold #,standout
ZSH_HIGHLIGHT_STYLES[alias]=fg=064,bold
ZSH_HIGHLIGHT_STYLES[builtin]=fg=064,bold
ZSH_HIGHLIGHT_STYLES[function]=fg=064,bold
ZSH_HIGHLIGHT_STYLES[command]=fg=064,bold
ZSH_HIGHLIGHT_STYLES[precommand]=fg=064,underline
ZSH_HIGHLIGHT_STYLES[commandseparator]=none
ZSH_HIGHLIGHT_STYLES[hashed-command]=fg=037
ZSH_HIGHLIGHT_STYLES[path]=fg=166,underline
ZSH_HIGHLIGHT_STYLES[globbing]=fg=033
ZSH_HIGHLIGHT_STYLES[history-expansion]=fg=white,underline
ZSH_HIGHLIGHT_STYLES[single-hyphen-option]=fg=125,bold
ZSH_HIGHLIGHT_STYLES[double-hyphen-option]=fg=125,bold
ZSH_HIGHLIGHT_STYLES[back-quoted-argument]=none
ZSH_HIGHLIGHT_STYLES[single-quoted-argument]=fg=136
ZSH_HIGHLIGHT_STYLES[double-quoted-argument]=fg=136
ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument]=fg=136
ZSH_HIGHLIGHT_STYLES[back-double-quoted-argument]=fg=136
ZSH_HIGHLIGHT_STYLES[assign]=fg=037
fi
# dircolors
if [[ "$(tput colors)" == "256" ]]; then
eval $(dircolors =(cat ~/.shell/plugins/dircolors-solarized/dircolors.256dark ~/.shell/dircolors.extra))
fi