From de9624997b60d4a9a9fe998ad27d42834fc56202 Mon Sep 17 00:00:00 2001 From: Niverton Date: Sun, 24 Mar 2024 19:43:02 +0100 Subject: [PATCH] feat(cmp): removed luasnip --- lua/plugins/25-comp.lua | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/lua/plugins/25-comp.lua b/lua/plugins/25-comp.lua index 3744256..1e01e1b 100644 --- a/lua/plugins/25-comp.lua +++ b/lua/plugins/25-comp.lua @@ -1,23 +1,4 @@ ---@type LazySpec return { - { - "astronvim/astrocore", - opts = { - commands = { - LuaSnipExitOnModeChange = { - function(evt) - local ok, luasnip = pcall(require, "luasnip") - if - ok - and luasnip.session - and luasnip.session.current_nodes[evt.buf] - and not luasnip.session.jump_active - then - luasnip.unlink_current() - end - end, - }, - }, - }, - }, + { "L3MON4D3/LuaSnip", enabled = false }, }