Files
nvim-config/lua/plugins/surround.lua
2025-11-27 13:38:49 -05:00

17 lines
406 B
Lua

return {
"kylechui/nvim-surround",
version = "*",
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
surrounds = {
["*"] = { -- 'b' for bold
add = { "**", "**" },
find = "%*%*.-%*%*",
delete = "^(%*%*)().-(%*%*)()$",
},
}
})
end
}