forked from dineshsalunke/nvim-config
21 lines
443 B
Lua
21 lines
443 B
Lua
return {
|
|
{
|
|
"echasnovski/mini.pairs",
|
|
event = "VeryLazy",
|
|
opts = {}
|
|
},
|
|
|
|
{
|
|
"echasnovski/mini.comment",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
options = {
|
|
custom_commentstring = function()
|
|
return require("ts_context_commentstring.internal").calculate_commentstring() or vim.bo.commentstring
|
|
end,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|