added plugin for sourrounding braces

This commit is contained in:
Thies Lennart Alff 2024-10-08 12:32:46 +02:00
parent c6b7cb1381
commit ab41de78b8
Signed by: lennartalff
GPG key ID: 4EC67D34D594104D

View file

@ -44,4 +44,16 @@ return {
{ {
'jiangmiao/auto-pairs', 'jiangmiao/auto-pairs',
}, },
{
"kylechui/nvim-surround",
version = "*", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
keymaps = {
normal = "<leader>s",
},
})
end
},
} }