working condition

This commit is contained in:
darwincereska
2025-11-27 13:38:49 -05:00
parent c86f52f5fb
commit fd83a29f1e
4 changed files with 117 additions and 86 deletions

16
lua/plugins/surround.lua Normal file
View File

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