nvim: 自動autopair補齊優化

This commit is contained in:
Yuan Chiu 2025-05-10 15:26:21 +08:00
parent 11fd5e8de1
commit b559a7f2ef
Signed by: yuan
GPG Key ID: 50FBE4156404B98D

View File

@ -25,4 +25,20 @@ return {
map_c_w = false, -- map <c-w> to delete a pair if possible
},
},
{
"windwp/nvim-ts-autotag",
event = "InsertEnter",
config = true
},
{
"kylechui/nvim-surround",
version = "^3.0.0", -- 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
},
}