.vimrc

changeset 114
599b1b279478
parent 111
99cc7b567195
child 115
6d6751c819ad
equal deleted inserted replaced
111:99cc7b567195 114:599b1b279478
19 let vundle_readme=expand('~/vimfiles/bundle/vundle/README.md') 19 let vundle_readme=expand('~/vimfiles/bundle/vundle/README.md')
20 endif 20 endif
21 21
22 if !filereadable(vundle_readme) 22 if !filereadable(vundle_readme)
23 if !executable('git') 23 if !executable('git')
24 echo "You probably want git installed and in PATH" 24 echo "You probably want git installed and in PATH."
25 echo " http://chocolatey.org "
25 quit 26 quit
26 endif 27 endif
27 28
28 let installed_vundle=1 29 let installed_vundle=1
29 if on_windows == 0 30 if on_windows == 0
277 let g:gundo_prefer_python3=1 278 let g:gundo_prefer_python3=1
278 endif 279 endif
279 280
280 ">> Tagbar 281 ">> Tagbar
281 if on_windows == 1 282 if on_windows == 1
282 let g:tagbar_ctags_bin = 'C:\Users\mhoward\bin\ctags.exe' 283 if executable('ctags') == 0
284 " if i haven't installed from chocolatey...
285 let g:tagbar_ctags_bin = 'C:\Users\mhoward\bin\ctags.exe'
286 endif
283 endif 287 endif
284 288
285 let g:tagbar_autoclose = 1 289 let g:tagbar_autoclose = 1
286 let g:tagbar_autofocus = 1 290 let g:tagbar_autofocus = 1
287 let g:tagbar_compact = 1 291 let g:tagbar_compact = 1

mercurial