From fb235ab19d1ea23b483de9928f865dacc6d67cd9 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Wed, 20 Mar 2024 18:03:05 -0400 Subject: [PATCH] removes lua-snip --- nvim/m-housh/lua/user/plugin/init.lua | 44 +++++++++++++-------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/nvim/m-housh/lua/user/plugin/init.lua b/nvim/m-housh/lua/user/plugin/init.lua index cd2f9e8..17d5b3f 100755 --- a/nvim/m-housh/lua/user/plugin/init.lua +++ b/nvim/m-housh/lua/user/plugin/init.lua @@ -1,27 +1,27 @@ -- This file contains plugin's that don't require much configuration. return { - { - "L3MON4D3/LuaSnip", - version = "2.*", - build = "make install_jsregexp", - event = { 'BufReadPre', 'BufNewFile' }, - config = function() - local luasnip = require('luasnip') - local types = require('luasnip.util.types') - luasnip.config.set_config { - history = true, - updateevents = "TextChanged,TextChangedI", - enable_autosnippets = true, - ext_opts = { - [types.choiceNode] = { - active = { - virt_text = { { "<-", "Error" } }, - }, - }, - }, - } - end - }, +-- { +-- "L3MON4D3/LuaSnip", +-- version = "2.*", +-- build = "make install_jsregexp", +-- event = { 'BufReadPre', 'BufNewFile' }, +-- config = function() +-- local luasnip = require('luasnip') +-- local types = require('luasnip.util.types') +-- luasnip.config.set_config { +-- history = true, +-- updateevents = "TextChanged,TextChangedI", +-- enable_autosnippets = true, +-- ext_opts = { +-- [types.choiceNode] = { +-- active = { +-- virt_text = { { "<-", "Error" } }, +-- }, +-- }, +-- }, +-- } +-- end +-- }, { "hrsh7th/vim-vsnip", config = function()