summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorJakpat Mingmongkolmitr <[email protected]>2021-09-06 00:17:17 +0700
committerGitHub <[email protected]>2021-09-05 21:47:17 +0430
commit4371ddbbc7d40734a69c3ba81636cb362fdd391e (patch)
tree91679c2b8968e3402d0c11e673f001a644ea1ed5 /lua/plugins.lua
parente40182919396dc100630975d68ed879473ec7da4 (diff)
fix: load nvim_comment setup from core module (#1476)
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua2
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,
},