From 096a641aad2d6bc95467edd06fb5a2d2cd2cbf7e Mon Sep 17 00:00:00 2001 From: Josh Sherman Date: Wed, 29 Jan 2020 22:18:36 -0600 Subject: [PATCH] fix(zsh): enable plugin and improve style Totally forgot to enable the damned thing. Default color blended in too much, so updated the default color to the darkest color from the solarized palette that was still readable. --- zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zshrc b/zshrc index 7e44295..dabae20 100644 --- a/zshrc +++ b/zshrc @@ -9,10 +9,13 @@ source $DOTFILES/aliases eval `dircolors $DOTFILES/dircolors` +source $INCLUDES/zsh-autosuggestions/zsh-autosuggestions.zsh source $INCLUDES/zsh-completions/zsh-completions.plugin.zsh source $INCLUDES/zsh-history-substring-search/zsh-history-substring-search.zsh source $INCLUDES/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#586e75" + HISTFILE=$HOME/.zsh_history HISTSIZE=1000000 SAVEHIST=1000000