diff options
author | kylo252 <[email protected]> | 2021-08-11 17:29:20 +0200 |
---|---|---|
committer | kylo252 <[email protected]> | 2021-08-11 17:29:20 +0200 |
commit | 1b5730d51195fee74f3544bd29d017c46da3dea3 (patch) | |
tree | 0885aa308b741fc6840d29cf90c1bb2cae86d8c6 /lua/plugins.lua | |
parent | 5a7630cac761e91335d2f25cb07a81271569c791 (diff) |
feat: make autopairs configurable
Diffstat (limited to 'lua/plugins.lua')
-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 8e497075..c2a0e0e2 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -68,7 +68,7 @@ return { -- event = "InsertEnter", after = "nvim-compe", config = function() - require "core.autopairs" + require("core.autopairs").setup() if lvim.builtin.autopairs.on_config_done then lvim.builtin.autopairs.on_config_done(require "nvim-autopairs") end |