rm un-needed lazy loading for comment.nvim

loading it with our lazy_load function would mean that it would load after the UI so using module=comment doesnt make any sense at all, so keeping only the module part would mean that this plugin would load on mappings that invoke comment.nvim functions
This commit is contained in:
siduck 2022-01-10 06:32:27 +05:30
parent 71b710b35b
commit e9b25e5912
1 changed files with 0 additions and 1 deletions

View File

@ -196,7 +196,6 @@ return packer.startup(function()
module = "Comment",
config = override_req("nvim_comment", "(plugins.configs.others).comment()"),
setup = function()
require("core.utils").packer_lazy_load "Comment.nvim"
require("core.mappings").comment()
end,
}