dotar/zsh/prezto-override/zshrc

31 lines
928 B
Bash
Raw Normal View History

2017-08-09 17:31:57 +08:00
#
# Executes commands at the start of an interactive session.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
# Customize to your needs...
for config_file ($HOME/.yadr/zsh/*.zsh) source $config_file
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
2020-02-16 15:37:34 +08:00
export HELM_HOME="$HOME/.helm"
export GOPATH=$HOME/go
export GOROOT=/usr/local/go
2021-09-16 05:13:42 +08:00
pathAppend "$GOPATH/bin:$HOME/.local/bin:$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin"
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"
2021-12-25 16:23:07 +08:00
[ -s $HOME/.asdf/asdf.sh ] && . $HOME/.asdf/asdf.sh