|
|
@ -94,6 +94,7 @@ Plug 'rhysd/vim-clang-format', { 'for' : ['c', 'cpp', 'java'] } |
|
|
|
"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' } |
|
|
|
Plug 'lumiliet/vim-twig', { 'for': [ 'php', 'html' ] } " Twig templates |
|
|
|
|
|
|
|
" Python |
|
|
|
Plug 'davidhalter/jedi-vim', { 'for': 'python', 'do': 'pip install jedi' } |
|
|
@ -102,6 +103,9 @@ Plug 'zchee/deoplete-jedi', { 'for': 'python' } |
|
|
|
" Java |
|
|
|
Plug 'artur-shaik/vim-javacomplete2', { 'for': 'java' } |
|
|
|
|
|
|
|
" MIPS |
|
|
|
Plug 'vim-scripts/mips.vim' |
|
|
|
|
|
|
|
" All of your Plugins must be added before the following line |
|
|
|
call plug#end() " required |
|
|
|
filetype plugin indent on " required |
|
|
@ -160,6 +164,9 @@ if has("autocmd") |
|
|
|
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") |
|
|
|
\| exe "normal! g'\"" | endif |
|
|
|
endif |
|
|
|
|
|
|
|
" Setting for correct mips syntax highlighting |
|
|
|
au BufReadPost *.mips set syntax=mips |
|
|
|
" }}} |
|
|
|
|
|
|
|
" MAPPINGS{{{ |
|
|
|