Created
February 15, 2017 19:55
-
-
Save gerred/d7f80c0086fccd9eaf3b13742e1d8ccd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
autoload -U promptinit; promptinit | |
prompt pure | |
export NVM_DIR="/Users/gerred/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
export LSCOLORS="ExGxFxDxCxDxDxhbhdacEc" | |
alias l='ls -al' | |
alias ls='ls -G' | |
source $HOME/.cargo/env | |
if test -f ~/.gnupg/.gpg-agent-info -a -n "$(pgrep gpg-agent)"; then | |
source ~/.gnupg/.gpg-agent-info | |
export GPG_AGENT_INFO | |
GPG_TTY=$(tty) | |
export GPG_TTY | |
else | |
eval $(gpg-agent --daemon --write-env-file ~/.gnupg/.gpg-agent-info) | |
fi | |
export GOPATH="$HOME/go" | |
export PATH="$HOME/bin:$GOPATH/bin:$HOME/.local/bin:$PATH" | |
# OPAM configuration | |
. /Users/gerred/.opam/opam-init/init.zsh > /dev/null 2> /dev/null || true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment