mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 19:50:38 +00:00
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:
3
lua/absolute/after/comment.lua
Normal file
3
lua/absolute/after/comment.lua
Normal file
@@ -0,0 +1,3 @@
|
||||
local comment = require("Comment")
|
||||
|
||||
comment.setup()
|
||||
@@ -1,5 +1,7 @@
|
||||
return {
|
||||
"numToStr/Comment.nvim",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
config = true
|
||||
config = function()
|
||||
require("absolute.after.comment")
|
||||
end,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user