aboutsummaryrefslogtreecommitdiff
path: root/.vim/after/plugin/minpac.vim
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-06-04 16:53:35 +0800
committerGuangxiong Lin <[email protected]>2022-06-04 18:36:58 +0800
commitca6da1729156f74bb36ba94a864ab5e39e78ae3b (patch)
treea8b5d6310eb51a338f9f8808d45a63ce2e5d9b50 /.vim/after/plugin/minpac.vim
parent07231696a2e090790bda1910ec85a7dec3ecbb69 (diff)
downloaddotfiles-ca6da1729156f74bb36ba94a864ab5e39e78ae3b.tar.gz
dotfiles-ca6da1729156f74bb36ba94a864ab5e39e78ae3b.tar.bz2
dotfiles-ca6da1729156f74bb36ba94a864ab5e39e78ae3b.zip
Try using nvim
Diffstat (limited to '.vim/after/plugin/minpac.vim')
-rw-r--r--.vim/after/plugin/minpac.vim15
1 files changed, 13 insertions, 2 deletions
diff --git a/.vim/after/plugin/minpac.vim b/.vim/after/plugin/minpac.vim
index 688c132..baaac09 100644
--- a/.vim/after/plugin/minpac.vim
+++ b/.vim/after/plugin/minpac.vim
@@ -19,12 +19,23 @@ function! InitMinpac() abort
call minpac#add('https://github.com/dense-analysis/ale.git', {'type': 'opt'})
call minpac#add('https://github.com/SirVer/ultisnips.git', {'type': 'opt'})
call minpac#add('https://github.com/honza/vim-snippets')
- call minpac#add('https://github.com/prabirshrestha/vim-lsp')
+ call minpac#add('https://github.com/prabirshrestha/vim-lsp', {'type': 'opt'})
call minpac#add('https://github.com/ctrlpvim/ctrlp.vim.git', {'type': 'opt'})
call minpac#add('https://github.com/FelikZ/ctrlp-py-matcher.git', {'type': 'opt'})
call minpac#add('https://github.com/preservim/tagbar.git')
- call minpac#add('https://github.com/ludovicchabant/vim-gutentags.git')
+ call minpac#add('https://github.com/neovim/nvim-lspconfig', {'type': 'opt'})
+ call minpac#add('https://github.com/hrsh7th/nvim-cmp', {'type': 'opt'})
+ call minpac#add('https://github.com/hrsh7th/cmp-buffer', {'type': 'opt'})
+ call minpac#add('https://github.com/hrsh7th/cmp-path', {'type': 'opt'})
+ call minpac#add('https://github.com/hrsh7th/cmp-nvim-lsp', {'type': 'opt'})
+ call minpac#add('https://github.com/hrsh7th/cmp-cmdline', {'type': 'opt'})
+ call minpac#add('https://github.com/nvim-treesitter/nvim-treesitter', {
+ \ 'type': 'opt',
+ \ 'do': 'if has("nvim") | packadd nvim-treesitter | :TSUpdate | endif',
+ \ })
+
+ call minpac#add('https://github.com/ludovicchabant/vim-gutentags.git', {'type': 'opt'})
call minpac#add('https://github.com/easymotion/vim-easymotion.git')
call minpac#add('https://github.com/airblade/vim-rooter.git')
call minpac#add('https://github.com/mbbill/undotree.git')