dumb change

This commit is contained in:
Enrique MP 2024-01-24 19:30:00 +00:00
parent a236f68491
commit 586585893d

View file

@ -4,17 +4,17 @@ return {
dependencies = {
"JoosepAlviste/nvim-ts-context-commentstring",
},
-- config = true, -- runs require('Comment').setup()
config = function()
-- import comment plugin safely
local comment = require("Comment")
local ts_context_commentstring = require("ts_context_commentstring.integrations.comment_nvim")
-- enable comment
comment.setup({
-- for commenting tsx and jsx files
pre_hook = ts_context_commentstring.create_pre_hook(),
})
end,
config = true, -- runs require('Comment').setup()
-- config = function()
-- -- import comment plugin safely
-- local comment = require("Comment")
--
-- local ts_context_commentstring = require("ts_context_commentstring.integrations.comment_nvim")
--
-- -- enable comment
-- comment.setup({
-- -- for commenting tsx and jsx files
-- pre_hook = ts_context_commentstring.create_pre_hook(),
-- })
-- end,
}