mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
13 lines
253 B
Lua
13 lines
253 B
Lua
|
return {
|
||
|
"numToStr/Comment.nvim",
|
||
|
lazy = true,
|
||
|
opts = function()
|
||
|
return {
|
||
|
pre_hook = require("ts_context_commentstring.integrations.comment_nvim").create_pre_hook(),
|
||
|
}
|
||
|
end,
|
||
|
config = function(_, opts)
|
||
|
require("Comment").setup(opts)
|
||
|
end,
|
||
|
}
|