export CLICOLOR=1
-export PATH=$PATH:~/bin
+export PATH=~/bin:/usr/local/bin:$PATH
+export PYTHONPATH="/usr/local/lib/python2.7/site-packages:$PYTHONPATH"
YELLOW=$(tput setaf 136);
ORANGE=$(tput setaf 166);
export PS1='\[$ORANGE\]\u\[$RESET\] @ \[$YELLOW\]\h\[$RESET\] in \[$GREEN\]\w\[$RESET\]\n\[$BASE2\]$(prompt_char)\[$RESET\] '
-# Extended PYTHONPATH for brew-installed packages
-
-export PYTHONPATH="/usr/local/lib/python2.7/site-packages/:$PYTHONPATH"
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
alias git=/usr/local/git/bin/git
+
+export IRCNICK="signal9"
+export IRCUSER="signal9"
+export IRCNAME="Shamblin"
+export IRCSERVER="chat.freenode.net"
set autoindent
set cindent
-set backup
set backupdir=~/.saves
+set noswapfile
set expandtab
+set smartindent
set softtabstop=4
set tabstop=4
set shiftwidth=4
set noerrorbells
set vb
set colorcolumn=80
+set hlsearch
+
+filetype plugin indent on
+
+autocmd FileType make setlocal noexpandtab
au BufNewFile,BufRead *.json set filetype=javascript
+au BufNewFile,BufRead /usr/local/nginx/conf/* set filetype=nginx
+au BufWritePost *.py call Flake8()
+au BufWritePost *.js :JSHint
call pathogen#infect()