Updating wildignore for svn

This commit is contained in:
Hunter Haugen 2012-06-13 11:10:51 -07:00
parent 52c1fadb32
commit ad4c2a75c9

8
.vimrc
View file

@ -1128,13 +1128,11 @@ endif
" CtrlP
set wildignore+=*/tmp/*,*.so,*.swp,*.zip " Linux/MacOSX
set wildignore+=tmp\*,*.swp,*.zip,*.exe " Windows
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*
let g:ctrlp_working_path_mode = 0
let g:ctrlp_custom_ignore = '\.git$\|\.hg$\|\.svn$',
noremap <Leader>p :CtrlPBuffer<CR>
noremap <Leader>P :CtrlPCurFile<CR>
let g:ctrlp_working_path_mode = 0
let g:ctrlp_custom_ignore = {
\ 'dir': '\.git$\|\.hg$\|\.svn$',
\ 'file': '\.exe$\|\.so$\|\.dll$',
\ }
" Vundle
set rtp+=~/.vim/bundle/vundle