Add linux integration

This commit is contained in:
Spotlight 2018-03-24 13:56:30 -05:00
parent 6c681373cb
commit 7d57a117bb
No known key found for this signature in database
GPG key ID: 1677AD4E8EBBBC56

15
zshrc
View file

@ -2,8 +2,12 @@
# zplug configuraton
#########
export ZPLUG_HOME=/usr/local/opt/zplug
source $ZPLUG_HOME/init.zsh
if [[ $OSTYPE == darwin* ]]; then
export ZPLUG_HOME=/usr/local/opt/zplug
source $ZPLUG_HOME/init.zsh
elif [[ $OSTYPE == linux* ]]; then
source /usr/share/zsh/scripts/zplug/init.zsh
fi
zplug "plugins/git", from:oh-my-zsh
zplug "plugins/iterm2", from:oh-my-zsh
@ -73,4 +77,11 @@ export DEVKITPRO=${HOME}/devkitPro
export DEVKITPPC=${DEVKITPRO}/devkitPPC
export DEVKITARM=${DEVKITPRO}/devkitARM
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
source /etc/profile.d/vte.sh
fi
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" ]]
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"