Files
dotfiles/nvim/.config/nvim/lua/plugins/surround.lua
2026-01-05 07:17:31 +01:00

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