Merge previous rvm + alacritty commits
This commit is contained in:
commit
34acd6d4a5
2 changed files with 564 additions and 2 deletions
9
zshrc
9
zshrc
|
@ -11,7 +11,6 @@ zplug "zsh-users/zsh-syntax-highlighting"
|
|||
zplug "zsh-users/zsh-autosuggestions"
|
||||
zplug "zsh-users/zsh-completions"
|
||||
zplug "zsh-users/zsh-history-substring-search"
|
||||
zplug "johnhamelink/rvm-zsh", lazy:true
|
||||
zplug 'mfaerevaag/wd', as:command, use:"wd.sh", hook-load:"wd() { . $ZPLUG_REPOS/mfaerevaag/wd/wd.sh }"
|
||||
|
||||
bindkey "^[[A" history-beginning-search-backward
|
||||
|
@ -119,7 +118,7 @@ if [ -f $HOME/.keysrc ]; then
|
|||
fi
|
||||
|
||||
if [ -d $HOME/.cargo ]; then
|
||||
export PATH="$HOME/.cargo/bin:$PATH"
|
||||
source $HOME/.cargo/env
|
||||
fi
|
||||
|
||||
if [ -d $HOME/.ghcup ]; then
|
||||
|
@ -129,3 +128,9 @@ fi
|
|||
if [ -d $HOME/.fastlane ]; then
|
||||
export PATH="$HOME/.fastlane/bin:$PATH"
|
||||
fi
|
||||
|
||||
# RVM must be last.
|
||||
if [ -d $HOME/.rvm ]; then
|
||||
PATH=${PATH}:$HOME/.rvm/bin
|
||||
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" ]]
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue