diff options
author | Guangxiong Lin <[email protected]> | 2022-05-09 08:00:04 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-05-09 08:00:04 +0800 |
commit | e74110af1c0166885d67fa2f33d4c1c364c36c65 (patch) | |
tree | f688151b1961b5e2d8d934f9402fc3cddb91af77 /.vim | |
parent | 814f5b045c7b5f94249d0a7bc34427da0cbedb2a (diff) | |
download | dotfiles-e74110af1c0166885d67fa2f33d4c1c364c36c65.tar.gz dotfiles-e74110af1c0166885d67fa2f33d4c1c364c36c65.tar.bz2 dotfiles-e74110af1c0166885d67fa2f33d4c1c364c36c65.zip |
Remove ycm install script (vim)
Diffstat (limited to '.vim')
-rw-r--r-- | .vim/after/plugin/minpac.vim | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.vim/after/plugin/minpac.vim b/.vim/after/plugin/minpac.vim index 5530a65..ed9ce0a 100644 --- a/.vim/after/plugin/minpac.vim +++ b/.vim/after/plugin/minpac.vim @@ -15,8 +15,6 @@ function! InitMinpac() abort call minpac#add('https://github.com/k-takata/minpac', {'type': 'opt'}) - " call minpac#add('https://github.com/ycm-core/YouCompleteMe', - " \ {'do': function('s:build_ycm')}) call minpac#add('https://github.com/lifepillar/vim-mucomplete', {'type': 'opt'}) call minpac#add('https://github.com/dense-analysis/ale.git', {'type': 'opt'}) call minpac#add('https://github.com/SirVer/ultisnips.git', {'type': 'opt'}) @@ -79,7 +77,3 @@ endfunction command! MinpacUpdate source $MYVIMRC | call InitMinpac() | call minpac#update() command! MinpacClean source $MYVIMRC | call InitMinpac() | call minpac#clean() command! MinpacStatus call InitMinpac() | call minpac#status() - -function! s:build_ycm(hooktype, name) - exec '!python3 ./install.py' -endfunction |