Browse Source

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

Jakpat Mingmongkolmitr 3 năm trước cách đây
mục cha
commit
4371ddbbc7
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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,
   },