Mercurial > dotfiles
comparison vim/vimrc @ 142:8e555c4986cd
Hide build files in web projects.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 19 Nov 2013 07:31:35 -0800 |
parents | aec168618b7b |
children | 967328f9896b 1cacc16689cb |
comparison
equal
deleted
inserted
replaced
141:be0260e57fd6 | 142:8e555c4986cd |
---|---|
219 " Ctrl-P should manage the working directory. | 219 " Ctrl-P should manage the working directory. |
220 let g:ctrlp_working_path_mode = 2 | 220 let g:ctrlp_working_path_mode = 2 |
221 | 221 |
222 " Ctrl-P should however ignore some stuff. | 222 " Ctrl-P should however ignore some stuff. |
223 let g:ctrlp_custom_ignore = { | 223 let g:ctrlp_custom_ignore = { |
224 \ 'dir': '\v[\/](\.git|\.hg|\.svn|venv)$' | 224 \ 'dir': '\v[\/](\.git|\.hg|\.svn|venv|build)$' |
225 \ } | 225 \ } |
226 | 226 |
227 " Make Ctrl-P cache stuff in our temp directory. | 227 " Make Ctrl-P cache stuff in our temp directory. |
228 let g:ctrlp_cache_dir = s:vim_home.'/cache' | 228 let g:ctrlp_cache_dir = s:vim_home.'/cache' |
229 | 229 |