summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-10 16:10:03 -0400
committerchristianchiarulli <[email protected]>2021-07-10 16:10:03 -0400
commit5c7600322848fa1a55482e2b8b45c7f97cf67a85 (patch)
tree53df2943bc9bfcdf165f596e4c2006ce904329b9
parent4b0304d9bd0910aa3a625b8aae68fee6ae39ea7a (diff)
don't lazy load compe and autopairs autoindent issue
-rw-r--r--lua/plugins.lua4
1 files 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"