From 48ec1a0b3f9e39ed3b4ff2753f951f3a4bcce823 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Mon, 25 Apr 2022 16:55:04 -0400 Subject: [PATCH] Remove deoplete. This was broken on mac, and was causes some issues elsewhere. May add it back at a later date. --- vim/vimrc | 13 ------------- 1 file changed, 13 deletions(-) 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'