nvim: plugins: Minor clean up
Also run TSUpdate if treesitter gets updated.
This commit is contained in:
parent
6dd655ebce
commit
5b108ac9b4
1 changed files with 23 additions and 8 deletions
|
@ -2,28 +2,43 @@
|
||||||
vim.cmd 'packadd cfilter'
|
vim.cmd 'packadd cfilter'
|
||||||
|
|
||||||
require "paq" {
|
require "paq" {
|
||||||
|
-- Multi-purpose
|
||||||
'echasnovski/mini.nvim' ,
|
'echasnovski/mini.nvim' ,
|
||||||
|
-- FZF
|
||||||
'ibhagwan/fzf-lua' ,
|
'ibhagwan/fzf-lua' ,
|
||||||
|
-- Snippets
|
||||||
'dcampos/nvim-snippy' ,
|
'dcampos/nvim-snippy' ,
|
||||||
'honza/vim-snippets' ,
|
'honza/vim-snippets' ,
|
||||||
|
-- Git
|
||||||
'lewis6991/gitsigns.nvim' ,
|
'lewis6991/gitsigns.nvim' ,
|
||||||
'tpope/vim-fugitive' ,
|
'tpope/vim-fugitive' ,
|
||||||
'SanchayanMaity/gitlinker.nvim' ,
|
'SanchayanMaity/gitlinker.nvim' ,
|
||||||
|
-- Quickfix
|
||||||
'yorickpeterse/nvim-pqf' ,
|
'yorickpeterse/nvim-pqf' ,
|
||||||
|
-- Text objects
|
||||||
'wellle/targets.vim' ,
|
'wellle/targets.vim' ,
|
||||||
'chrisgrieser/nvim-various-textobjs',
|
'chrisgrieser/nvim-various-textobjs',
|
||||||
|
'andymass/vim-matchup' ,
|
||||||
|
-- Async jobs
|
||||||
|
'nvim-lua/plenary.nvim' ,
|
||||||
|
'tpope/vim-dispatch' ,
|
||||||
|
-- Tim Pope goodies
|
||||||
'tpope/vim-repeat' ,
|
'tpope/vim-repeat' ,
|
||||||
'tpope/vim-sleuth' ,
|
'tpope/vim-sleuth' ,
|
||||||
'tpope/vim-dispatch' ,
|
-- Treesitter
|
||||||
'junegunn/vim-easy-align' ,
|
{
|
||||||
'nvim-lua/plenary.nvim' ,
|
|
||||||
'mfussenegger/nvim-lint' ,
|
|
||||||
'nvim-treesitter/nvim-treesitter' ,
|
'nvim-treesitter/nvim-treesitter' ,
|
||||||
|
run = ':TSUpdate'
|
||||||
|
},
|
||||||
'mfussenegger/nvim-treehopper' ,
|
'mfussenegger/nvim-treehopper' ,
|
||||||
'chentoast/marks.nvim' ,
|
-- Linter
|
||||||
'andymass/vim-matchup' ,
|
'mfussenegger/nvim-lint' ,
|
||||||
'christoomey/vim-tmux-navigator' ,
|
-- Language specific
|
||||||
'windwp/nvim-autopairs' ,
|
'windwp/nvim-autopairs' ,
|
||||||
'gpanders/nvim-parinfer' ,
|
'gpanders/nvim-parinfer' ,
|
||||||
|
-- Miscellaneous
|
||||||
|
'junegunn/vim-easy-align' ,
|
||||||
|
'chentoast/marks.nvim' ,
|
||||||
|
'christoomey/vim-tmux-navigator' ,
|
||||||
'cbochs/portal.nvim'
|
'cbochs/portal.nvim'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue