Skip to content

Instantly share code, notes, and snippets.

@josephjoice
Created September 8, 2021 18:02
Show Gist options
  • Save josephjoice/78815aa3df904270049da9fb0e6fa693 to your computer and use it in GitHub Desktop.
Save josephjoice/78815aa3df904270049da9fb0e6fa693 to your computer and use it in GitHub Desktop.
#### FIG ENV VARIABLES ####
# Please make sure this block is at the start of this file.
[ -s ~/.fig/shell/pre.sh ] && source ~/.fig/shell/pre.sh
#### END FIG ENV VARIABLES ####
#
# 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...
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
fi
export GPG_TTY=$(tty)
code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}
#### FIG ENV VARIABLES ####
# Please make sure this block is at the end of this file.
[ -s ~/.fig/fig.sh ] && source ~/.fig/fig.sh
#### END FIG ENV VARIABLES ####
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment