Skip to content

Instantly share code, notes, and snippets.

@akrueger
Created January 9, 2017 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akrueger/83a68cd2117b5117b038206eb1bd540d to your computer and use it in GitHub Desktop.
Save akrueger/83a68cd2117b5117b038206eb1bd540d to your computer and use it in GitHub Desktop.
.zshrc
### User configuration sourced by interactive shells
### Aliases
# alias e=$EDITOR
### Editors
export EDITOR='code'
export VISUAL='code'
# Jenv
eval "$(jenv init -)"
### Path
# Node version manager
export N_PREFIX="$HOME/n"; [[ :$PATH: == *":$N_PREFIX/bin:"* ]] || PATH+=":$N_PREFIX/bin"
# Jenv
export PATH="$HOME/.jenv/bin:$PATH"
# Yarn
export PATH="$PATH:`yarn global bin`"
### Source zim
if [[ -s ${ZDOTDIR:-${HOME}}/.zim/init.zsh ]]; then
source ${ZDOTDIR:-${HOME}}/.zim/init.zsh
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment