diff --git a/zshenv b/zshenv index 191bedb..c0ae9aa 100644 --- a/zshenv +++ b/zshenv @@ -19,11 +19,6 @@ if (( $+commands[ruby] )); then [[ -d "$gem_bin_path" ]] && path+=("$gem_bin_path") fi -# Local environment -if [[ -s ~/.zshenv.local ]]; then - source ~/.zshenv.local -fi - # Setup go paths if (( $+commands[go] )); then local go_bin_path="$(go env GOPATH)/bin" @@ -35,6 +30,7 @@ if (( $+commands[fd] )); then export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" fi -# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. -[[ -d "/usr/share/rvm/bin" ]] && path+=("/usr/share/rvm/bin") -[[ -d "$HOME/.rvm/bin" ]] && path+=("$HOME/.rvm/bin") +# Local environment +if [[ -s ~/.zshenv.local ]]; then + source ~/.zshenv.local +fi