fix: changed color of ZSH_HIGHLIGHT_COLOR[comment]
So, if we type comments (interactive comments (`#`) or "elided parameters in command position" (`$`)), then its fg is black which is not visible for the normal terminal users, so it doesn't makes any sense, so I changed it a greyish version to 245 so that it will be clearly visible
This commit is contained in:
parent
5eb677bb0f
commit
acfe8e4aaa
|
|
@ -59,7 +59,7 @@
|
||||||
: ${ZSH_HIGHLIGHT_STYLES[back-dollar-quoted-argument]:=fg=cyan}
|
: ${ZSH_HIGHLIGHT_STYLES[back-dollar-quoted-argument]:=fg=cyan}
|
||||||
: ${ZSH_HIGHLIGHT_STYLES[assign]:=none}
|
: ${ZSH_HIGHLIGHT_STYLES[assign]:=none}
|
||||||
: ${ZSH_HIGHLIGHT_STYLES[redirection]:=fg=yellow}
|
: ${ZSH_HIGHLIGHT_STYLES[redirection]:=fg=yellow}
|
||||||
: ${ZSH_HIGHLIGHT_STYLES[comment]:=fg=black,bold}
|
: ${ZSH_HIGHLIGHT_STYLES[comment]:=fg=245,bold}
|
||||||
: ${ZSH_HIGHLIGHT_STYLES[named-fd]:=none}
|
: ${ZSH_HIGHLIGHT_STYLES[named-fd]:=none}
|
||||||
: ${ZSH_HIGHLIGHT_STYLES[numeric-fd]:=none}
|
: ${ZSH_HIGHLIGHT_STYLES[numeric-fd]:=none}
|
||||||
: ${ZSH_HIGHLIGHT_STYLES[arg0]:=fg=green}
|
: ${ZSH_HIGHLIGHT_STYLES[arg0]:=fg=green}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue