Add ignores for ctrlp

This commit is contained in:
Hunter Haugen 2012-06-12 11:33:53 -07:00
parent 8272539e1e
commit 3eff053be0

9
.vimrc
View file

@ -1125,6 +1125,15 @@ if has("eval")
endif
endif
" CtrlP
set wildignore+=*/tmp/*,*.so,*.swp,*.zip " Linux/MacOSX
set wildignore+=tmp\*,*.swp,*.zip,*.exe " Windows
let g:ctrlp_custom_ignore = '\.git$\|\.hg$\|\.svn$'
let g:ctrlp_custom_ignore = {
\ 'dir': '\.git$\|\.hg$\|\.svn$',
\ 'file': '\.exe$\|\.so$\|\.dll$',
\ }
" Vundle
set rtp+=~/.vim/bundle/vundle
call vundle#rc()