diff options
| author | Jakpat Mingmongkolmitr <[email protected]> | 2021-09-06 00:17:17 +0700 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2021-09-05 21:47:17 +0430 | 
| commit | 4371ddbbc7d40734a69c3ba81636cb362fdd391e (patch) | |
| tree | 91679c2b8968e3402d0c11e673f001a644ea1ed5 | |
| parent | e40182919396dc100630975d68ed879473ec7da4 (diff) | |
fix: load nvim_comment setup from core module (#1476)
| -rw-r--r-- | lua/plugins.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 8a0692f2..98721c6c 100644 --- a/lua/plugins.lua +++ b/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,    },  | 
