From 294b77c90e05e3682fa5a400e053ee2b5ed7d683 Mon Sep 17 00:00:00 2001 From: Spotlight Date: Sat, 26 Oct 2019 20:53:41 -0500 Subject: [PATCH] Cargo! wd! All.. sorts of stuff that amounts to just that. --- zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc b/zshrc index 20ed747..2ccb193 100644 --- a/zshrc +++ b/zshrc @@ -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