comparison vim/vimrc @ 153:967328f9896b

More ignored directories, syntastic config update.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 16 Dec 2013 14:43:14 -0800
parents 8e555c4986cd
children 254c4f068808
comparison
equal deleted inserted replaced
152:08c501149115 153:967328f9896b
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|build)$' 224 \ 'dir': '\v[\/](\.git|\.hg|\.svn|venv|build|node_modules)$'
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
230 " Use `pyflakes` with `syntastic`. 230 " Use `pyflakes` with `syntastic`.
231 let g:syntastic_python_checker = 'pyflakes' 231 let g:syntastic_python_checkers = ['pyflakes', 'pylint']
232 232
233 " Custom Mercurial commands highlighting in Lawrencium. 233 " Custom Mercurial commands highlighting in Lawrencium.
234 let g:lawrencium_hg_commands_file_types = { 234 let g:lawrencium_hg_commands_file_types = {
235 \'clog': 'hggraphlog' 235 \'clog': 'hggraphlog'
236 \} 236 \}