mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 10:44:42 -05:00
working condition
This commit is contained in:
16
lua/plugins/surround.lua
Normal file
16
lua/plugins/surround.lua
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user