From e9b25e591292cb6acd2aa1ab325e04aab41cd455 Mon Sep 17 00:00:00 2001 From: siduck Date: Mon, 10 Jan 2022 06:32:27 +0530 Subject: [PATCH] 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 --- lua/plugins/init.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index 50aa374..af686b9 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -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, }