Created
April 15, 2021 21:26
-
-
Save MikeiLL/e9628ffdc9d9a640a5c6763b54f89886 to your computer and use it in GitHub Desktop.
This file contains 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
# use Node's blc to check broken links | |
# see: https://github.com/stevenvachon/broken-link-checker | |
# this might make gettext available in env | |
PATH=$PATH:/Applications/Poedit.app/Contents/MacOS | |
PATH=/usr/local/lib:/usr/local/bin:/usr/local/sbin:~/bin | |
PATH=$PATH:/Library/Python/2.7/site-packages/ | |
PATH="$HOME/.npm-packages/bin:$PATH" | |
PATH="$HOME/.npm/bin:$PATH" | |
# for Rosuav's shed | |
PATH=$PATH:~/shed | |
PATH=$PATH:/Library/TeX/texbin/ | |
PATH="$PATH:$HOME/.composer/vendor/bin" | |
# For Homebrew | |
PATH="/usr/local/opt/python/libexec/bin:$PATH" | |
# for lilypond | |
PATH=$PATH:~/bin:/usr/texbin | |
PATH=/usr/local/texlive/2016/bin/x86_64-darwin:$PATH | |
PATH=$PATH:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Applications/Keybase.app/Contents/SharedSupport/bin:/usr/local/MacGPG2/bin: | |
PATH="/usr/local/bin:/usr/local/sbin:~/bin:/usr/bin:$PATH" | |
# Postgres | |
PATH=$PATH:/usr/local/Cellar/postgresql@11/11.11_1/bin/ | |
# For python from Pyenv | |
PATH=/Users/mikekilmer/.pyenv/shims/python:$PATH | |
# ZSH Homebrew fix | |
PATH=/opt/homebrew/bin:$PATH | |
# for valet+ | |
PATH="/usr/local/opt/[email protected]/bin:$PATH" | |
PATH="/usr/local/opt/[email protected]/sbin:$PATH" | |
PATH="/usr/local/opt/[email protected]/bin:$PATH" | |
export PATH | |
# Other Environment Variables | |
LDFLAGS="-L/usr/local/opt/[email protected]/lib" | |
export CPPFLAGS="-I/usr/local/opt/[email protected]/include" | |
export LDFLAGS | |
export PYTHON_CONFIGURE_OPTS=--enable-unicode=ucs2 | |
# I think this is for VIM Colors was weird with zsh | |
# export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " | |
# export CLICOLOR=1 | |
# export LSCOLORS=ExFxBxDxCxegedabagacad | |
export SVN_EDITOR=vim | |
export VAGRANT_HOME=/Volumes/Oggun/vagrant_home | |
export NVM_DIR="/Users/mikekilmer/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
export NODE_PATH=/usr/local/bin/node:/Users/mikekilmer/.nvm/versions/node/v6.9.4/lib/node_modules | |
export COMPOSER_DISABLE_XDEBUG_WARN=1 | |
source "/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc" | |
source "/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.zsh.inc" | |
## export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python | |
## export VIRTUALENVWRAPPER_VIRTUALENV=/usr/local/bin/virtualenv | |
## source /usr/local/bin/virtualenvwrapper.sh | |
## export WORKON_HOME=$HOME/.venv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment