feat(comment.lua): add support for commenting functionality in the Absolute plugin

feat(comment.lua): configure Comment.nvim plugin to load the comment setup from absolute.after.comment.lua file
This commit is contained in:
David Ibia
2024-01-30 16:10:38 +01:00
parent 41e667d58a
commit 850814d169
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
local comment = require("Comment")
comment.setup()

View File

@@ -1,5 +1,7 @@
return { return {
"numToStr/Comment.nvim", "numToStr/Comment.nvim",
event = { "BufReadPre", "BufNewFile" }, event = { "BufReadPre", "BufNewFile" },
config = true config = function()
require("absolute.after.comment")
end,
} }