Explorar el Código

Add plugins for Java development to .vimrc

Frans Bergman hace 6 años
padre
commit
087f4acf93
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  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
+" }}}