14 lines
245 B
Lua
14 lines
245 B
Lua
vim.pack.add({
|
|
{
|
|
src = "https://github.com/kylechui/nvim-surround",
|
|
version = vim.version.range("^3.0.0"),
|
|
},
|
|
})
|
|
|
|
local ok, surround = pcall(require, "nvim-surround")
|
|
if ok then
|
|
surround.setup()
|
|
else
|
|
print("plugin surround missing")
|
|
end
|