Add ignores for ctrlp
This commit is contained in:
parent
8272539e1e
commit
3eff053be0
1 changed files with 9 additions and 0 deletions
9
.vimrc
9
.vimrc
|
|
@ -1125,6 +1125,15 @@ if has("eval")
|
||||||
endif
|
endif
|
||||||
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
|
" Vundle
|
||||||
set rtp+=~/.vim/bundle/vundle
|
set rtp+=~/.vim/bundle/vundle
|
||||||
call vundle#rc()
|
call vundle#rc()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue