mirror of
https://github.com/DefectingCat/nvim
synced 2025-07-15 08:41:33 +00:00
29 lines
535 B
Lua
29 lines
535 B
Lua
return {
|
|
{
|
|
"windwp/nvim-autopairs",
|
|
event = "InsertEnter",
|
|
opts = {},
|
|
},
|
|
{
|
|
"windwp/nvim-ts-autotag",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
config = function()
|
|
require("nvim-ts-autotag").setup({})
|
|
end,
|
|
},
|
|
{
|
|
"kylechui/nvim-surround",
|
|
version = "*",
|
|
event = "BufReadPre",
|
|
config = function()
|
|
require("nvim-surround").setup({})
|
|
end,
|
|
},
|
|
{
|
|
"folke/ts-comments.nvim",
|
|
opts = {},
|
|
event = "BufReadPost",
|
|
enabled = vim.fn.has("nvim-0.10.0") == 1,
|
|
},
|
|
}
|