chore: add pairs and comment plugin

This commit is contained in:
Dinesh Salunke 2023-06-16 02:00:40 +05:30
parent a3c60ec4d3
commit fe2ab21286

20
lua/plugins/coding.lua Normal file
View File

@ -0,0 +1,20 @@
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,
},
},
},
}