Browse Source

Add plugins for java and python

coc
Schneider 7 years ago
parent
commit
4ea9832397
  1. 11
      vimrc.symlink
  2. 2
      zsh/aliases.zsh

11
vimrc.symlink

@ -78,6 +78,11 @@ let g:clang_library_path='/usr/lib/llvm-4.0/lib/libclang-4.0.so.1'
" PHP
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
call plug#end() " required
@ -179,6 +184,12 @@ set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
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 {{{

2
zsh/aliases.zsh

@ -1,6 +1,6 @@
# in case its not already thera
alias la='ls -la'
alias sagu='sudo apt-get upgrade'
alias sagu='sudo apt update && sudo apt upgrade'
alias v='vim '

Loading…
Cancel
Save