add surround plugin

This commit is contained in:
xesc 2024-07-25 08:22:07 +02:00
parent 6407a15cfd
commit 69b19abf8e

12
lua/plugin/surround.lua Normal file
View file

@ -0,0 +1,12 @@
return {
{
"kylechui/nvim-surround",
version = "*", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
-- Configuration here, or leave empty to use defaults
})
end
}
}