Remove deoplete.

This was broken on mac, and was causes some issues elsewhere. May add it
back at a later date.
This commit is contained in:
James Patrick 2022-04-25 16:55:04 -04:00
parent 3556761ebd
commit 48ec1a0b3f
1 changed files with 0 additions and 13 deletions

View File

@ -52,7 +52,6 @@ let g:has_async = v:version >= 800 || has('nvim')
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Plugs_Configure:
" -> Molokai Theme
" -> Deoplete Completion Framework
" -> Git Gutter
" -> Rainbow Parens
" -> Auto Pair
@ -77,18 +76,6 @@ Plug 'tomasr/molokai'
match ErrorMsg '\%>120v.\+'
match ErrorMsg '\s\+$'
" Deoplete : Fancy vim8+/nvim autocomplete framework
if (has('python3') || has('nvim')) && executable('pip3')
Plug 'Shougo/deoplete.nvim', {'do': 'pip3 install --user --upgrade pynvim'}
" completion source
Plug 'Shougo/neco-syntax'
" running on non-nvim instances requires the following
" See https://github.com/Shougo/deoplete.nvim#install for more
Plug 'roxma/nvim-yarp', Cond(! has('nvim'))
Plug 'roxma/vim-hug-neovim-rpc', Cond(! has('nvim'))
let g:deoplete#enable_at_startup=1
endif
" GitGutter : Letting you know whats changed
Plug 'airblade/vim-gitgutter'