add quote, bracket etc auto-enclose

This commit is contained in:
Andrzej Stepien 2024-03-14 13:30:07 +01:00
parent 7e43002a31
commit 0ccdf18a7c
1 changed files with 10 additions and 0 deletions

10
lua/plugins/surround.lua Normal file
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,
}