export CLICOLOR=1
+export GREP_COLOR=always
export PYTHONPATH="/usr/local/lib/python2.7/site-packages:$PYTHONPATH"
export PYTHON_ENV_PATH=$HOME/env
export GRADLE_HOME=$HOME/bin/gradle
YELLOW=$(tput setaf 136);
ORANGE=$(tput setaf 166);
GREEN=$(tput setaf 64);
+BLUE=$(tput setaf 33);
BASE2=$(tput setaf 254);
RESET=$(tput sgr0);
#
##################################################
+#export PYTHON_VIRTUALENV="${BLUE}[`basename \"$VIRTUAL_ENV\"`]${RESET} "
function activate () {
command source $PYTHON_ENV_PATH/$1/bin/activate
}
autocmd FileType make setlocal noexpandtab
au BufNewFile,BufRead *.json set filetype=javascript
+au BufNewFile,BufRead Podfile,*.podspec set filetype=ruby
au BufNewFile,BufRead /usr/local/nginx/conf/* set filetype=nginx
au BufNewFile,BufRead *.md,*.txt setlocal textwidth=80
au BufWritePost *.py call Flake8()