nvim: plugins: Minor clean up

Also run TSUpdate if treesitter gets updated.
This commit is contained in:
Sanchayan Maity 2023-07-07 14:59:51 +05:30
parent 6dd655ebce
commit 5b108ac9b4
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
1 changed files with 23 additions and 8 deletions

View File

@ -2,28 +2,43 @@
vim.cmd 'packadd cfilter'
require "paq" {
-- Multi-purpose
'echasnovski/mini.nvim' ,
-- FZF
'ibhagwan/fzf-lua' ,
-- Snippets
'dcampos/nvim-snippy' ,
'honza/vim-snippets' ,
-- Git
'lewis6991/gitsigns.nvim' ,
'tpope/vim-fugitive' ,
'SanchayanMaity/gitlinker.nvim' ,
-- Quickfix
'yorickpeterse/nvim-pqf' ,
-- Text objects
'wellle/targets.vim' ,
'chrisgrieser/nvim-various-textobjs',
'andymass/vim-matchup' ,
-- Async jobs
'nvim-lua/plenary.nvim' ,
'tpope/vim-dispatch' ,
-- Tim Pope goodies
'tpope/vim-repeat' ,
'tpope/vim-sleuth' ,
'tpope/vim-dispatch' ,
'junegunn/vim-easy-align' ,
'nvim-lua/plenary.nvim' ,
'mfussenegger/nvim-lint' ,
'nvim-treesitter/nvim-treesitter' ,
-- Treesitter
{
'nvim-treesitter/nvim-treesitter' ,
run = ':TSUpdate'
},
'mfussenegger/nvim-treehopper' ,
'chentoast/marks.nvim' ,
'andymass/vim-matchup' ,
'christoomey/vim-tmux-navigator' ,
-- Linter
'mfussenegger/nvim-lint' ,
-- Language specific
'windwp/nvim-autopairs' ,
'gpanders/nvim-parinfer' ,
-- Miscellaneous
'junegunn/vim-easy-align' ,
'chentoast/marks.nvim' ,
'christoomey/vim-tmux-navigator' ,
'cbochs/portal.nvim'
}