mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
20 lines
483 B
Lua
20 lines
483 B
Lua
return {
|
|
{ import = "plugins.mod.nvim-treesitter" },
|
|
{
|
|
"echasnovski/mini.pairs",
|
|
version = false,
|
|
config = function()
|
|
require("mini.pairs").setup()
|
|
end,
|
|
},
|
|
{
|
|
"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,
|
|
},
|
|
}
|