]> git.r.bdr.sh - rbdr/dotfiles/blobdiff - vimrc
Use the newer powerline.
[rbdr/dotfiles] / vimrc
diff --git a/vimrc b/vimrc
index 1cefa7773f1da34d64e881e6b54a42be845a363e..bf769250d4d985c6400a0b508006f5bfe6c45465 100755 (executable)
--- a/vimrc
+++ b/vimrc
@@ -80,6 +80,7 @@ set backspace=indent,eol,start
 
 " 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
@@ -123,8 +124,8 @@ set t_Co=256
 color railscasts
 
 " 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
@@ -145,6 +146,7 @@ endif
 
 " Mapping for TagBar
 nmap <F8> :TagbarToggle<CR>
+let g:tagbar_ctags_bin="/usr/local/bin/ctags"
 
 " Color Column
 set colorcolumn=81
@@ -157,3 +159,10 @@ set foldmethod=syntax
 set foldnestmax=10
 set nofoldenable
 set foldlevel=1
+
+" powerline stuff
+set rtp+=/Users/benbeltran/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)$'