diff options
-rw-r--r-- | vimrc | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -76,18 +76,22 @@ let g:plug_shallow = 0 call plug#begin('~/.vim/plugged') -" for language server -" see: https://github.com/prabirshrestha/vim-lsp/wiki/Servers -" see: https://github.com/prabirshrestha/asyncomplete.vim -" -Plug 'SirVer/ultisnips' +if has('python3') + " 無効化しておかないとうるさい + Plug 'SirVer/ultisnips' +endif + Plug 'prabirshrestha/async.vim' Plug 'prabirshrestha/asyncomplete.vim' Plug 'prabirshrestha/asyncomplete-lsp.vim' Plug 'prabirshrestha/vim-lsp' Plug 'mattn/vim-lsp-settings' Plug 'thomasfaingnaert/vim-lsp-snippets' -Plug 'thomasfaingnaert/vim-lsp-ultisnips' + +if has('python3') + Plug 'thomasfaingnaert/vim-lsp-ultisnips' +endif + " Plug 'yami-beta/asyncomplete-omni.vim' Plug 'machakann/asyncomplete-ezfilter.vim' " ALE |