feat: Added nvim surround

This commit is contained in:
Binciu Viorel 2024-10-01 13:58:50 +03:00
parent 57a0567bc4
commit 20dedf9300
No known key found for this signature in database
GPG key ID: BF265B67E53AE948

View file

@ -0,0 +1,10 @@
return {
"kylechui/nvim-surround",
version = "*", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
-- Configuration here, or leave empty to use defaults
})
end,
}