# Remove path separator from WORDCHARS. WORDCHARS=${WORDCHARS//[\/]} ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=242' if [[ ! ${ZIM_HOME}/init.zsh -nt ${ZDOTDIR:-${HOME}}/.zimrc ]]; then # Update static initialization script if it does not exist or it's outdated, before sourcing it source ${ZIM_HOME}/zimfw.zsh init -q fi source ${ZIM_HOME}/init.zsh # Bind ^[[A/^[[B manually so up/down works both before and after zle-line-init bindkey '^[[A' history-substring-search-up bindkey '^[[B' history-substring-search-down # Bind up and down keys zmodload -F zsh/terminfo +p:terminfo if [[ -n ${terminfo[kcuu1]} && -n ${terminfo[kcud1]} ]]; then bindkey ${terminfo[kcuu1]} history-substring-search-up bindkey ${terminfo[kcud1]} history-substring-search-down fi # Lines configured by zsh-newuser-install HISTFILE=~/.zshhistory HISTSIZE=1000 SAVEHIST=10000 # End of lines configured by zsh-newuser-install # The following lines were added by compinstall zstyle :compinstall filename '/home/ruthenic/.zshrc' autoload -Uz compinit compinit # End of lines added by compinstall #Make ZSH highlighting colors more Fish-like ZSH_HIGHLIGHT_STYLES[suffix-alias]=fg=blue,underline ZSH_HIGHLIGHT_STYLES[precommand]=fg=blue,underline ZSH_HIGHLIGHT_STYLES[arg0]=fg=blue