14 lines
391 B
Lua
14 lines
391 B
Lua
return {
|
|
"kylechui/nvim-surround",
|
|
version = "*",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
-- Make sure that we never get whitespaces when adding surroundings
|
|
surrounds = {
|
|
["("] = { add = { "(", ")" }, },
|
|
["{"] = { add = { "{", "}" }, },
|
|
["<"] = { add = { "<", ">" }, },
|
|
["["] = { add = { "[", "]" }, },
|
|
}
|
|
}
|
|
}
|