Slightly improve perf

This commit is contained in:
Spotlight 2019-09-30 11:44:34 -05:00
parent 107b0ae696
commit a68b4ef109
Signed by: spotlight
GPG key ID: 874AA355B3209BDC

12
zshrc
View file

@ -7,9 +7,10 @@ source $ZPLUG_HOME/init.zsh
zplug "felixr/docker-zsh-completion"
# Stuff that modifies
zplug "zsh-users/zsh-syntax-highlighting", defer:2
zplug "zsh-users/zsh-autosuggestions", defer:2
zplug "zsh-users/zsh-completions", defer:2
zplug "zsh-users/zsh-syntax-highlighting"
zplug "zsh-users/zsh-autosuggestions"
zplug "zsh-users/zsh-completions"
zplug "johnhamelink/rvm-zsh", lazy:true
bindkey "$terminfo[kcuu1]" history-beginning-search-backward
bindkey "$terminfo[kcud1]" history-beginning-search-forward
@ -104,11 +105,6 @@ if [[ $OSTYPE == darwin* ]]; then
export PATH="/usr/local/bin:/usr/local/sbin:${PATH}"
fi
if [ -s $HOME/.rvm/scripts/rvm ]; then
source "$HOME/.rvm/scripts/rvm"
export PATH="$PATH:$HOME/.rvm/bin"
fi
# Personal preferences
export EDITOR=vim
export GO111MODULE=on