mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 19:50:38 +00:00
feat(comment.lua): configure Comment.nvim plugin to load the comment setup from absolute.after.comment.lua file
8 lines
159 B
Lua
8 lines
159 B
Lua
return {
|
|
"numToStr/Comment.nvim",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
config = function()
|
|
require("absolute.after.comment")
|
|
end,
|
|
}
|