Advertisement
Braber01

:Helptags cannot process ~/.vim/bundle/cpp_doxygen

Feb 19th, 2018
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.32 KB | None | 0 0
  1. set nocompatable
  2. filetype off
  3. set rtp +=~/.vim/bundle/Vundle.vim
  4. call vundle#begin()
  5. "Let vundle manage vundle
  6. Plugin 'gmaric/vundle'
  7. Plugin DoxygenToolkit.vim "Not sure if I need this I kind of want to combine this and "cpp_doxygen
  8. Plugin 'cpp_doxygen'
  9. Plugin 'valloric/youcompleteme'
  10. "let g_ycm_global_extra_conf = '~/.vim/.ycm_extra_conf.py
  11. Plugin 'scrooloose/nerdtree'
  12. Plugin 'scrooloose/syntastic'
  13. "set statusline+=%#warningmsg#
  14. "set statusline+=%{SyntasticStatusLineFlag()}
  15. "set statusline+=%*
  16. "let g:syntastic_c_checkers = []
  17. "let g:syntastic_cpp_checkers = []
  18. "let g:syntastic_auto_loc_list = 1
  19. "let g:syntastic_check_on_open = 1
  20. "let g:syntastic_check_on_wq = 0
  21. Plugin 'airblade/vim-gitgutter'
  22. " install indent guides
  23. Plugin 'kien/rainbow_parentheses.vim'
  24. Plugin 'octol/vim-cpp-enhanced-highlight'
  25. Plugin 'fsharp/vim-fsharp'
  26. call vundle#end
  27. set statusline+=%#warningmsg#
  28. set statusline+=%*
  29. let g:syntastic_c_checkers = []
  30. let g:syntastic_cpp_checkers = []
  31. let g:syntastic_always_populate_loc_list = 1
  32. let g:syntastic_auto_loc_list = 1
  33. let g:syntastic_check_on_open = 1
  34. let g:syntastic_check_on_wq = 0
  35. let g:ycm_global_extra_conf = '~/.vim/.ycm_extra_conf.py'
  36. let g:ycm_add_preview_to_completeopt = 1
  37. let g:ycm_autoclose_preview_window_after_insertion = 1
  38. let g:ycm_key_detailed_diagnostics = '<leader>e'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement