Cargo! wd! All.. sorts of stuff that amounts to just that.

This commit is contained in:
Spotlight 2019-10-26 20:53:41 -05:00
parent a68b4ef109
commit 294b77c90e
Signed by: spotlight
GPG key ID: 874AA355B3209BDC

5
zshrc
View file

@ -11,6 +11,7 @@ zplug "zsh-users/zsh-syntax-highlighting"
zplug "zsh-users/zsh-autosuggestions"
zplug "zsh-users/zsh-completions"
zplug "johnhamelink/rvm-zsh", lazy:true
zplug 'mfaerevaag/wd', as:command, use:"wd.sh", hook-load:"wd() { . $ZPLUG_REPOS/mfaerevaag/wd/wd.sh }"
bindkey "$terminfo[kcuu1]" history-beginning-search-backward
bindkey "$terminfo[kcud1]" history-beginning-search-forward
@ -112,6 +113,10 @@ if [ -f $HOME/.keysrc ]; then
source $HOME/.keysrc
fi
if [ -d $HOME/.cargo ]; then
export PATH="$HOME/.cargo/bin:$PATH"
fi
if [ -d $HOME/.ghcup ]; then
export PATH="$HOME/.cabal/bin:$HOME/.ghcup/bin:$PATH"
fi