add plugins nvim-surround and comment
This commit is contained in:
parent
22c7b31aa4
commit
8a5a13a628
@ -30,6 +30,21 @@ return require('packer').startup(function(use)
|
|||||||
requires = 'nvim-lua/plenary.nvim'
|
requires = 'nvim-lua/plenary.nvim'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use({
|
||||||
|
"kylechui/nvim-surround",
|
||||||
|
tag = "*", -- Use for stability; omit to use `main` branch for the latest features
|
||||||
|
config = function()
|
||||||
|
require("nvim-surround").setup()
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
use {
|
||||||
|
'numToStr/Comment.nvim',
|
||||||
|
config = function()
|
||||||
|
require('Comment').setup()
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
use ('mbbill/undotree')
|
use ('mbbill/undotree')
|
||||||
|
|
||||||
use {
|
use {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user