nvim: add sourround

This commit is contained in:
2026-01-04 22:43:47 +01:00
parent a7c0178983
commit 4dfb7abbba
3 changed files with 23 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
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