blob: 2f82f3d723c7208866827ec97b153bf647e8326a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
return {
-- Add/change/delete surrounding delimiter pairs with ease.
{
"kylechui/nvim-surround",
event = "VeryLazy",
dependencies = {
"nvim-treesitter/nvim-treesitter",
"nvim-treesitter/nvim-treesitter-textobjects",
},
config = function()
require("nvim-surround").setup({})
end
},
}
|