diff options
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 8e497075..cacc1e9f 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -68,11 +68,12 @@ 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 end, + disable = not lvim.builtin.autopairs.active, }, -- Treesitter |