diff options
author | abzcoding <[email protected]> | 2021-08-12 12:05:54 +0430 |
---|---|---|
committer | abzcoding <[email protected]> | 2021-08-12 12:05:54 +0430 |
commit | 4fd72b1be2c1220a519d5b8d58219939a11df0c9 (patch) | |
tree | 845aa50b570acb67cb08891031d480b8a5a8b62e /lua/plugins.lua | |
parent | d71c3280c88c72665a21875522f0be3b157075b4 (diff) |
Revert "Merge pull request #1294 from kylo252/autopairs-refactor"
This reverts commit d71c3280c88c72665a21875522f0be3b157075b4, reversing
changes made to a3344203818658441d176fe279e1978505940432.
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index cacc1e9f..8e497075 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -68,12 +68,11 @@ return { -- event = "InsertEnter", after = "nvim-compe", config = function() - require("core.autopairs").setup() + require "core.autopairs" 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 |