Browse Source

Add plugins for Java development to .vimrc

Frans Bergman 6 years ago
parent
commit
087f4acf93
1 changed files with 8 additions and 0 deletions
  1. 8 0
      .vimrc

+ 8 - 0
.vimrc

@@ -78,6 +78,14 @@ Plugin 'valloric/youcompleteme'
 Plugin 'tpope/vim-surround'
 Plugin 'tpope/vim-repeat'
 Plugin 'raimondi/delimitmate'
+Plugin 'artur-shaik/vim-javacomplete2'
+Plugin 'neomake/neomake'
 call vundle#end()
 filetype plugin indent on    " required
 " }}}
+
+" ########## Plugin Settings ########## {{{
+autocmd FileType java setlocal omnifunc=javacomplete#Complete
+call neomake#configure#automake('nrwi', 500)
+let g:neomake_open_list = 2
+" }}}