From 3d4f13be7505a3fba852597b295772752cb8579e Mon Sep 17 00:00:00 2001 From: Christian Nieves Date: Wed, 11 Dec 2024 12:55:01 -0600 Subject: [PATCH] Disable matchup --- vim/.vim/lua/plugins/base.lua | 2 +- vim/.vim/lua/plugins/cmp.lua | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/vim/.vim/lua/plugins/base.lua b/vim/.vim/lua/plugins/base.lua index 9eb52fe..181ff37 100644 --- a/vim/.vim/lua/plugins/base.lua +++ b/vim/.vim/lua/plugins/base.lua @@ -89,7 +89,7 @@ return { { "nvim-lua/plenary.nvim", lazy = false }, { "squk/java-syntax.vim", ft = "java" }, { "udalov/kotlin-vim", event = "VeryLazy", ft = "kotlin" }, - { "andymass/vim-matchup", event = "VimEnter" }, + -- { "andymass/vim-matchup", event = "VimEnter" }, { "jghauser/mkdir.nvim", event = "BufWritePre" }, { "rmagatti/auto-session", diff --git a/vim/.vim/lua/plugins/cmp.lua b/vim/.vim/lua/plugins/cmp.lua index 2ac5225..4326485 100644 --- a/vim/.vim/lua/plugins/cmp.lua +++ b/vim/.vim/lua/plugins/cmp.lua @@ -41,6 +41,8 @@ return { vim.opt.completeopt = { "menu", "menuone", "noselect" } local cmp = require("cmp") + local luasnip = require("luasnip") + local compare = cmp.config.compare local conditionalSources = {}