Browse Source

fix: load nvim_comment setup from core module (#1476)

Jakpat Mingmongkolmitr 3 years ago
parent
commit
4371ddbbc7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lua/plugins.lua

+ 1 - 1
lua/plugins.lua

@@ -116,7 +116,7 @@ return {
     "terrortylor/nvim-comment",
     event = "BufRead",
     config = function()
-      require("nvim_comment").setup()
+      require("core.comment").setup()
     end,
     disable = not lvim.builtin.comment.active,
   },