Files
nvim-config/lua/plugins/editing-surround.lua
2025-12-01 15:17:21 -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
}