fix notify error

This commit is contained in:
Alex Muszynski
2025-04-13 19:23:37 -04:00
parent 8fa24ea055
commit 85c0ecc607
2 changed files with 7 additions and 25 deletions
-25
View File
@@ -3,31 +3,6 @@ return { -- Autocompletion
event = 'InsertEnter', event = 'InsertEnter',
dependencies = { dependencies = {
-- Snippet Engine & its associated nvim-cmp source -- 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', 'saadparwaiz1/cmp_luasnip',
-- Adds other completion capabilities. -- Adds other completion capabilities.
+7
View File
@@ -0,0 +1,7 @@
return {
'rcarriga/nvim-notify',
event = 'VeryLazy',
opts = {
background_colour = '#000000',
},
}