mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
20 lines
417 B
Lua
20 lines
417 B
Lua
return {
|
|
{
|
|
"echasnovski/mini.comment",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
options = {
|
|
custom_commentstring = function()
|
|
return require("ts_context_commentstring.internal").calculate_commentstring() or vim.bo.commentstring
|
|
end,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"JoosepAlviste/nvim-ts-context-commentstring",
|
|
lazy = true,
|
|
opts = {
|
|
enable_autocmd = false,
|
|
},
|
|
},
|
|
}
|