diff options
| author | christianchiarulli <[email protected]> | 2021-07-10 16:10:03 -0400 | 
|---|---|---|
| committer | christianchiarulli <[email protected]> | 2021-07-10 16:10:03 -0400 | 
| commit | 5c7600322848fa1a55482e2b8b45c7f97cf67a85 (patch) | |
| tree | 53df2943bc9bfcdf165f596e4c2006ce904329b9 | |
| parent | 4b0304d9bd0910aa3a625b8aae68fee6ae39ea7a (diff) | |
don't lazy load compe and autopairs autoindent issue
| -rw-r--r-- | lua/plugins.lua | 4 | 
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" | 
