From 5c7600322848fa1a55482e2b8b45c7f97cf67a85 Mon Sep 17 00:00:00 2001 From: christianchiarulli Date: Sat, 10 Jul 2021 16:10:03 -0400 Subject: [PATCH] don't lazy load compe and autopairs autoindent issue --- lua/plugins.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index 123469ec..e2ccb06e 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -51,7 +51,7 @@ return require("packer").startup(function(use) -- Autocomplete use { "hrsh7th/nvim-compe", - event = "InsertEnter", + -- event = "InsertEnter", config = function() require("lv-compe").config() end, @@ -60,7 +60,7 @@ return require("packer").startup(function(use) -- Autopairs use { "windwp/nvim-autopairs", - event = "InsertEnter", + -- event = "InsertEnter", after = { "telescope.nvim" }, config = function() require "lv-autopairs"