diff --git a/vim/vimrc b/vim/vimrc index 6c692e4..fbbbe36 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -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'