From 85c0ecc607f454793e4385bae13d6e421e65330c Mon Sep 17 00:00:00 2001 From: Alex Muszynski Date: Sun, 13 Apr 2025 19:23:37 -0400 Subject: [PATCH] fix notify error --- lua/custom/plugins/auto-complete.lua | 25 ------------------------- lua/custom/plugins/notify.lua | 7 +++++++ 2 files changed, 7 insertions(+), 25 deletions(-) create mode 100644 lua/custom/plugins/notify.lua diff --git a/lua/custom/plugins/auto-complete.lua b/lua/custom/plugins/auto-complete.lua index 2fd5346..6f95bd3 100644 --- a/lua/custom/plugins/auto-complete.lua +++ b/lua/custom/plugins/auto-complete.lua @@ -3,31 +3,6 @@ return { -- Autocompletion event = 'InsertEnter', dependencies = { -- Snippet Engine & its associated nvim-cmp source - { - 'L3MON4D3/LuaSnip', - build = (function() - -- Build Step is needed for regex support in snippets. - -- This step is not supported in many windows environments. - -- Remove the below condition to re-enable on windows. - if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then - return - end - return 'make install_jsregexp' - end)(), - dependencies = { - -- `friendly-snippets` contains a variety of premade snippets. - -- See the README about individual language/framework/plugin snippets: - -- https://github.com/rafamadriz/friendly-snippets - -- { - -- 'rafamadriz/friendly-snippets', - -- config = function() - -- require('luasnip.loaders.from_vscode').load { - -- exclude = { 'javascript' }, - -- } - -- end, - -- }, - }, - }, 'saadparwaiz1/cmp_luasnip', -- Adds other completion capabilities. diff --git a/lua/custom/plugins/notify.lua b/lua/custom/plugins/notify.lua new file mode 100644 index 0000000..91c7627 --- /dev/null +++ b/lua/custom/plugins/notify.lua @@ -0,0 +1,7 @@ +return { + 'rcarriga/nvim-notify', + event = 'VeryLazy', + opts = { + background_colour = '#000000', + }, +}