Blob config/nvim/lua/plugins.lua
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
return require('packer').startup(function()
use 'wbthomason/packer.nvim'
-- General-purpose editing plugins
use {
'tpope/vim-commentary',
'tpope/vim-repeat',
'tpope/vim-surround',
}
use {
'tpope/vim-fugitive',
cmd = 'Git',
}
use {
'windwp/nvim-autopairs',
event = 'InsertEnter',
config = function()
require('nvim-autopairs').setup({})
end
}
use { 'qpkorr/vim-renamer', cmd = 'Renamer' }
use {
'nvim-telescope/telescope.nvim',
requires = {{'nvim-lua/plenary.nvim'}},
config = function()
require('config.telescope')
end
}
end)
|