X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/2237ebab8a00abaee785c9fb7b80c3b6758c26e5..400b7c363c615dca6674a0381122d35f0949b6e6:/vimrc diff --git a/vimrc b/vimrc index 8b575bc..eea2e28 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 @@ -145,6 +146,7 @@ endif " Mapping for TagBar nmap :TagbarToggle +let g:tagbar_ctags_bin="/usr/local/bin/ctags" " Color Column set colorcolumn=81 @@ -161,5 +163,6 @@ set foldlevel=1 " powerline stuff let g:Powerline_symbols = 'fancy' -" node cleaning -let g:ctrlp_custom_ignore = 'node_modules\|DS_Store\|git' +" 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)$'