Mercurial > dotfiles
comparison vim/vimrc @ 213:769869e61101
Renamed autotags to gutentags.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 02 Sep 2014 16:14:14 -0700 |
parents | da7af1f2823c |
children | 6ee245fa8a3d |
comparison
equal
deleted
inserted
replaced
212:da7af1f2823c | 213:769869e61101 |
---|---|
237 " Initialize other custom extensions. | 237 " Initialize other custom extensions. |
238 call ctrlpext#autoignore#init() | 238 call ctrlpext#autoignore#init() |
239 | 239 |
240 " }}} | 240 " }}} |
241 | 241 |
242 " Autotags {{{ | 242 " Gutentags {{{ |
243 | 243 |
244 let g:autotags_exclude = ['venv', 'build', 'static', 'node_modules'] | 244 let g:gutentags_exclude = ['venv', 'build', 'static', 'node_modules'] |
245 let g:autotags_cache_dir = s:vim_home.'/tags' | 245 let g:gutentags_cache_dir = s:vim_home.'/tags' |
246 | 246 |
247 " }}} | 247 " }}} |
248 | 248 |
249 " Syntastic {{{ | 249 " Syntastic {{{ |
250 | 250 |
502 set statusline+=%* " Reset highlighting. | 502 set statusline+=%* " Reset highlighting. |
503 | 503 |
504 set statusline+=%= " Right align. | 504 set statusline+=%= " Right align. |
505 | 505 |
506 " Tag file generation indicator. | 506 " Tag file generation indicator. |
507 set statusline+=%{autotags#statusline('[TAGS]')} | 507 set statusline+=%{gutentags#statusline('[TAGS]')} |
508 set statusline+=\ " Space. | 508 set statusline+=\ " Space. |
509 | 509 |
510 " Mercurial information. | 510 " Mercurial information. |
511 set statusline+=%{lawrencium#statusline('[',']')} | 511 set statusline+=%{lawrencium#statusline('[',']')} |
512 set statusline+=\ " Space. | 512 set statusline+=\ " Space. |