Created
February 16, 2017 17:30
-
-
Save svpernova09/5fce11ece56349d2707bf3efde12f169 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
# This is the base of the new zsh directory | |
MYZSH="$HOME/.myzsh" | |
# Specify a tmp directory to use across all modules | |
# This is the theme. | |
THEME="default" | |
# This is the list of modules that generate Left Primary output. | |
LPRIMARY=(userhost pwd svn git jobs vim) | |
# This is the list of modules that generate Left Secondary output. | |
LSECONDARY=(gettime exitcode) | |
# This is the list of modules that generate Right Primary output. | |
RPRIMARY=(ipaddr) | |
# This is the list of modules that generate Right Secondary output. | |
RSECONDARY=(getdate) | |
# This is the title of the terminal | |
TITLE=(pwd) | |
# This is the list of modules that get processed once at shell start. | |
# They shouldn't generate output. | |
EXTRA=(ssh-add localbin completions lesscolors lscolors ll coloncolon longcmd safe-paste svperzsh) | |
PR_PRIMARY='$PR_GREEN' | |
#Rebind HOME and END to do the decent thing: | |
#bindkey '\e[1~' beginning-of-line | |
#bindkey '\e[4~' end-of-line | |
#case $TERM in (xterm*) | |
#bindkey '\eOH' beginning-of-line | |
#bindkey '\eOF' end-of-line | |
#esac | |
#And DEL too, as well as PGDN and insert: | |
#bindkey '\e[3~' delete-char | |
#bindkey '\e[6~' end-of-history | |
#bindkey '\e[2~' redisplay | |
alias kicksatis="curl -X POST 'lolnope' && echo 'lolnope'" | |
export PATH="/usr/local/bin:$PATH" | |
export PATH="/Users/halo/.composer/vendor/bin:$PATH" | |
export PATH="/Users/joferguson16/.composer/vendor/bin:$PATH" | |
export PATH="$(brew --prefix homebrew/php/php56)/bin:$PATH" | |
#export PATH="$(brew --prefix homebrew/php/php70)/bin:$PATH" | |
#export PATH="$(brew --prefix homebrew/php/php71)/bin:$PATH" | |
export PATH=/usr/local/share/npm/bin:$PATH | |
export PATH=/Users/joferguson16/PhpstormProjects/spark-installer:$PATH | |
export HOMEBREW_GITHUB_API_TOKEN="lolnope" | |
export GIT_EDITOR=~/PhpstormProjects/commit/bin/commit | |
################################################################################ | |
# This kicks off our processing now that we have variables | |
source "$MYZSH/init" | |
### Added by the Heroku Toolbelt | |
export PATH="/usr/local/heroku/bin:$PATH" | |
export PATH=/usr/local/sbin:$PATH | |
#export PATH=$PATH:`pear config-get bin_dir` | |
export NVM_DIR="/Users/halo/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment