aboutsummaryrefslogtreecommitdiff
path: root/.vim/after/plugin/minpac.vim
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-06-04 19:17:01 +0800
committerGuangxiong Lin <[email protected]>2022-06-05 11:41:04 +0800
commit47be6a508c4150f8ef2627ae185c650c081c6bbf (patch)
tree49656b4c2ffcc6adae8df89f4c9747287663311f /.vim/after/plugin/minpac.vim
parent8c54a7ae533b5e07e978c705f3790eff054196c0 (diff)
downloaddotfiles-47be6a508c4150f8ef2627ae185c650c081c6bbf.tar.gz
dotfiles-47be6a508c4150f8ef2627ae185c650c081c6bbf.tar.bz2
dotfiles-47be6a508c4150f8ef2627ae185c650c081c6bbf.zip
Add more plugins for nvim
Diffstat (limited to '.vim/after/plugin/minpac.vim')
-rw-r--r--.vim/after/plugin/minpac.vim18
1 files changed, 18 insertions, 0 deletions
diff --git a/.vim/after/plugin/minpac.vim b/.vim/after/plugin/minpac.vim
index baaac09..a557fda 100644
--- a/.vim/after/plugin/minpac.vim
+++ b/.vim/after/plugin/minpac.vim
@@ -23,13 +23,28 @@ function! InitMinpac() abort
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/puremourning/vimspector', {'type': 'opt'})
+
+ call minpac#add('https://github.com/nvim-lua/plenary.nvim', {'type': 'opt'})
+ call minpac#add('https://github.com/sindrets/diffview.nvim', {'type': 'opt'})
+ call minpac#add('https://github.com/f-person/git-blame.nvim', {'type': 'opt'})
+
+ call minpac#add('https://github.com/simrat39/symbols-outline.nvim', {'type': 'opt'})
call minpac#add('https://github.com/neovim/nvim-lspconfig', {'type': 'opt'})
+ call minpac#add('https://github.com/ray-x/lsp_signature.nvim', {'type': 'opt'})
+
+ call minpac#add('https://github.com/mfussenegger/nvim-dap', {'type': 'opt'})
+ call minpac#add('https://github.com/rcarriga/nvim-dap-ui', {'type': 'opt'})
+ call minpac#add('https://github.com/leoluz/nvim-dap-go', {'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/quangnguyen30192/cmp-nvim-ultisnips', {'type': 'opt'})
+
call minpac#add('https://github.com/nvim-treesitter/nvim-treesitter', {
\ 'type': 'opt',
\ 'do': 'if has("nvim") | packadd nvim-treesitter | :TSUpdate | endif',
@@ -84,6 +99,9 @@ function! InitMinpac() abort
call minpac#add('https://github.com/ledger/vim-ledger.git')
call minpac#add('https://github.com/axvr/org.vim.git')
call minpac#add('https://github.com/chr4/nginx.vim')
+ call minpac#add('https://github.com/iamcco/markdown-preview.nvim', {
+ \ 'type': 'start',
+ \ 'do': 'call mkdp#util#install()'})
let g:minpac_initialized = 1
endfunction