Browse Source

Add settings for java and markdown

coc
Schneider 6 years ago
parent
commit
8c14d2f849
  1. 2
      vim/ftplugin/java.vim
  2. 2
      vim/ftplugin/markdown.vim
  3. 1
      vimrc.symlink

2
vim/ftplugin/java.vim

@ -0,0 +1,2 @@
nmap <localleader>i :JCimportsAddMissing<cr>:JCimportsRemoveUnused<cr>:JCimportsSort<cr>
nmap <localleader>b :!javac %<cr>

2
vim/ftplugin/markdown.vim

@ -0,0 +1,2 @@
" set textwidth for automatic line wrap
set tw=80

1
vimrc.symlink

@ -83,6 +83,7 @@ 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' }
Plug 'lvht/phpcd.vim', { 'for': 'php', 'do': 'composer install' }
Plug 'captbaritone/better-indent-support-for-php-with-html', { 'for': 'php' }
" Python
Plug 'davidhalter/jedi-vim', { 'for': 'python', 'do': 'pip install jedi' }

Loading…
Cancel
Save