|
@ -78,6 +78,11 @@ let g:clang_library_path='/usr/lib/llvm-4.0/lib/libclang-4.0.so.1' |
|
|
" PHP |
|
|
" PHP |
|
|
Plug 'shawncplus/phpcomplete.vim', { 'for': 'php', 'do': 'curl -Ss http://vim-php.com/phpctags/install/phpctags.phar > ~/bin/phpctags && chmod +x ~/bin/phpctags' } |
|
|
Plug 'shawncplus/phpcomplete.vim', { 'for': 'php', 'do': 'curl -Ss http://vim-php.com/phpctags/install/phpctags.phar > ~/bin/phpctags && chmod +x ~/bin/phpctags' } |
|
|
|
|
|
|
|
|
|
|
|
" Python |
|
|
|
|
|
Plug 'python-mode/python-mode', { 'for': 'python' } |
|
|
|
|
|
|
|
|
|
|
|
" Java |
|
|
|
|
|
Plug 'artur-shaik/vim-javacomplete2', { 'for': 'java' } |
|
|
|
|
|
|
|
|
" All of your Plugins must be added before the following line |
|
|
" All of your Plugins must be added before the following line |
|
|
call plug#end() " required |
|
|
call plug#end() " required |
|
@ -179,6 +184,12 @@ set statusline+=%{SyntasticStatuslineFlag()} |
|
|
set statusline+=%* |
|
|
set statusline+=%* |
|
|
|
|
|
|
|
|
let vim_tags_ctags_binary='~/bin/phpctags'" |
|
|
let vim_tags_ctags_binary='~/bin/phpctags'" |
|
|
|
|
|
|
|
|
|
|
|
" Java config |
|
|
|
|
|
autocmd FileType java setlocal omnifunc=javacomplete#Complete |
|
|
|
|
|
|
|
|
|
|
|
" Python-mode config |
|
|
|
|
|
let g:pymode_lint_on_write = 0 |
|
|
"}}} |
|
|
"}}} |
|
|
|
|
|
|
|
|
" N E O C O M P L E T E {{{ |
|
|
" N E O C O M P L E T E {{{ |
|
|