diff --git a/dot_config/nvim/exact_lua/exact_plugins/exact_editor/autopairs.lua b/dot_config/nvim/exact_lua/exact_plugins/exact_editor/autopairs.lua index df6d3d1..8066191 100644 --- a/dot_config/nvim/exact_lua/exact_plugins/exact_editor/autopairs.lua +++ b/dot_config/nvim/exact_lua/exact_plugins/exact_editor/autopairs.lua @@ -25,4 +25,20 @@ return { map_c_w = false, -- map 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 + }, }