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:
parent
71b710b35b
commit
e9b25e5912
|
@ -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,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue