27 lines
689 B
Bash
27 lines
689 B
Bash
#
|
|
# 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
|
|
|
|
export GOPATH=$HOME/go
|
|
export PATH="$HOME/.local/bin:$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
|
|
|
|
export HELM_HOME="$HOME/.helm"
|
|
|
|
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
|
|
if [[ "$OSTYPE" != "darwin"* ]]; then
|
|
export PATH="$PATH:$HOME/.rvm/bin"
|
|
fi
|