diff options
| -rw-r--r-- | lua/plugins.lua | 33 | 
1 files changed, 21 insertions, 12 deletions
| diff --git a/lua/plugins.lua b/lua/plugins.lua index 0fd477de..11195acd 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -41,18 +41,27 @@ return {          lvim.builtin.compe.on_config_done(require "compe")        end      end, -    wants = "vim-vsnip", -    requires = { -      { -        "hrsh7th/vim-vsnip", -        wants = "friendly-snippets", -        event = "InsertCharPre", -      }, -      { -        "rafamadriz/friendly-snippets", -        event = "InsertCharPre", -      }, -    }, +    -- wants = "vim-vsnip", +    -- requires = { +    -- { +    --   "hrsh7th/vim-vsnip", +    --   wants = "friendly-snippets", +    --   event = "InsertCharPre", +    -- }, +    -- { +    --   "rafamadriz/friendly-snippets", +    --   event = "InsertCharPre", +    -- }, +    -- }, +  }, +  { +    "hrsh7th/vim-vsnip", +    -- wants = "friendly-snippets", +    event = "InsertCharPre", +  }, +  { +    "rafamadriz/friendly-snippets", +    event = "InsertCharPre",    },    -- Autopairs | 
