mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 05:24:41 -05:00
17 lines
406 B
Lua
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
|
|
}
|