1
0
Fork 0

back to black background

This commit is contained in:
Von Random 2015-11-11 19:40:18 +03:00
parent 9df479d1f0
commit 57a88694d8
3 changed files with 11 additions and 15 deletions

11
shellrc
View file

@ -341,15 +341,8 @@ if is_zsh; then
if [[ -r ${hl_script} ]]; then
source ${hl_script}
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
ZSH_HIGHLIGHT_STYLES[path]='fg=black,bold'
ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=black,bold'
fi
# history substring search à la fish from https://github.com/zsh-users/zsh-history-substring-search
hs_script="${HOME}/.zsh-history-substring-search/zsh-history-substring-search.zsh"
if [[ -r ${hs_script} ]]; then
source ${hs_script}
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
ZSH_HIGHLIGHT_STYLES[path]='fg=white,bold'
ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=white,bold'
fi
# }}}
else