X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/b100af91583692c01e3b68944875f8d8c2679983..3f77b12ec88ba42644d7e498434cba8ef9c9fe31:/vimrc diff --git a/vimrc b/vimrc index abda374..b0c9df9 100755 --- 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: 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 @@ -146,11 +147,6 @@ endif " Mapping for TagBar nmap :TagbarToggle -" Mapping for CommandTBuffer -map t :CtrlP -map T :CtrlPBuffer -map R :CtrlPClearCache - " Color Column set colorcolumn=81 @@ -162,3 +158,9 @@ set foldmethod=syntax set foldnestmax=10 set nofoldenable set foldlevel=1 + +" powerline stuff +let g:Powerline_symbols = 'fancy' + +" node cleaning +let g:ctrlp_custom_ignore = 'node_modules\|DS_Store\|git'