" load the plugin and indent settings for the detected filetype
filetype plugin indent on
+filetype plugin on
" Opens an edit command with the path of the currently edited file filled in
" Normal mode: <Leader>e
" Default color scheme
set t_Co=256
-color railscasts
+color molokai
" Directories for swp files
-set backupdir=~/.vim/backup
-set directory=~/.vim/backup
+set backupdir=~/.vim/.backup
+set directory=~/.vim/.backup
" Turn off jslint errors by default
let g:JSLintHighlightErrorLine = 0
" Mapping for TagBar
nmap <F8> :TagbarToggle<CR>
+let g:tagbar_ctags_bin="/usr/local/bin/ctags"
" Color Column
set colorcolumn=81
set foldlevel=1
" powerline stuff
-let g:Powerline_symbols = 'fancy'
+set rtp+=~/Library/Python/2.7/lib/python/site-packages/powerline/bindings/vim
+
+" Fix CtrlP root folder and add some ignores
+let g:ctrlp_working_path_mode = 0
+let g:ctrlp_custom_ignore = '\v[\/](\.(git|hg|svn)|node_modules|DS_Store)$'
+let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files']