Skip to content

Instantly share code, notes, and snippets.

@kikin81
Created May 15, 2013 06:45
Show Gist options
  • Save kikin81/5582059 to your computer and use it in GitHub Desktop.
Save kikin81/5582059 to your computer and use it in GitHub Desktop.
sublime text 2 user preferences
{
"ignored_packages":
[
"Vintage"
],
"tab_size": 4,
"theme": "Soda Light.sublime-theme",
"trailing_spaces_include_current_line": false,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
# Customize to your needs...
# Before other PATHs...
PATH=${PATH}:/usr/local/share/python
# Python
export WORKON_HOME=$HOME/.virtualenvs
export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python2.7
export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'
export PIP_VIRTUALENV_BASE=$WORKON_HOME
export PIP_RESPECT_VIRTUALENV=true
if [[ -r /usr/local/share/python/virtualenvwrapper.sh ]]; then
source /usr/local/share/python/virtualenvwrapper.sh
else
echo "WARNING: Can't find virtualenvwrapper.sh"
fi
export PATH=/usr/local/bin:$PATH::/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
# android
export PATH=/Users/fvelazquez/Development/android-sdk/tools:/Users/fvelazquez/Development/android-sdk/platform-tools:$PATH
# android home
export ANDROID_HOME=/Users/fvelazquez/Development/android-sdk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment