added packer script. made plugin configs not error out when no plugin

This commit is contained in:
2025-05-26 16:00:35 -05:00
parent 571effe737
commit e6577b4106
12 changed files with 270 additions and 229 deletions

View File

@@ -1,4 +1,7 @@
vim.notify = require("notify")
require("notify").setup({
background_colour="#000000"
})
local ok, notify = pcall(require, 'notify')
if ok then
vim.notify = notify
notify.setup({
background_colour="#000000"
})
end