Add linux integration
This commit is contained in:
parent
6c681373cb
commit
7d57a117bb
1 changed files with 13 additions and 2 deletions
15
zshrc
15
zshrc
|
@ -2,8 +2,12 @@
|
||||||
# zplug configuraton
|
# zplug configuraton
|
||||||
#########
|
#########
|
||||||
|
|
||||||
export ZPLUG_HOME=/usr/local/opt/zplug
|
if [[ $OSTYPE == darwin* ]]; then
|
||||||
source $ZPLUG_HOME/init.zsh
|
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/git", from:oh-my-zsh
|
||||||
zplug "plugins/iterm2", from:oh-my-zsh
|
zplug "plugins/iterm2", from:oh-my-zsh
|
||||||
|
@ -73,4 +77,11 @@ export DEVKITPRO=${HOME}/devkitPro
|
||||||
export DEVKITPPC=${DEVKITPRO}/devkitPPC
|
export DEVKITPPC=${DEVKITPRO}/devkitPPC
|
||||||
export DEVKITARM=${DEVKITPRO}/devkitARM
|
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" ]]
|
[[ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue