Explorar el Código

don't lazy load compe and autopairs autoindent issue

christianchiarulli hace 4 años
padre
commit
5c76003228
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      lua/plugins.lua

+ 2 - 2
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"