ignore bower_components in ctrlp

This commit is contained in:
Nick Nisi
2015-03-24 11:02:21 -05:00
parent 7465574b65
commit 1bd3e0f899

View File

@@ -420,7 +420,7 @@ let g:syntastic_javascript_checkers = ['jshint', 'jscs']
" CtrlP ignore patterns
let g:ctrlp_custom_ignore = {
\ 'dir': '\.git$\|node_modules$\|\.hg$\|\.svn$',
\ 'dir': '\.git$\|node_modules$\|bower_components$\|\.hg$\|\.svn$',
\ 'file': '\.exe$\|\.so$'
\ }