Created
February 23, 2016 15:47
-
-
Save jhonnymoreira/21351fd90a3f6dfdc840 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
export ZSH="$HOME/.oh-my-zsh" | |
ZSH_THEME="gitster" | |
export LANG=en_US.UTF-8 | |
HIST_STAMPS="dd.mm.yyyy" | |
export UPDATE_ZSH_DAYS=1 | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
export PATH="$HOME/.local/share/umake/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/local/rvm/bin" | |
force_color_prompt=yes | |
# RBenv | |
export PATH="$HOME/.rbenv/bin:$PATH" | |
eval "$(rbenv init -)" | |
# NVM | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" | |
# GVM | |
export GVM_DIR="$HOME/.gvm" | |
[[ -s "$GVM_DIR/scripts/gvm" ]] && source "$GVM_DIR/scripts/gvm" | |
export EDITOR="subl" | |
# Load aliases | |
source ~/.zsh_aliases |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment