major update for notifications, better color management and way better icons instead of devicons. Also some minor changes + addet PlugIns

This commit is contained in:
pika 2024-07-06 03:32:08 +02:00
parent 2b4dd54444
commit a76e973992
8 changed files with 205 additions and 90 deletions

View file

@ -0,0 +1,13 @@
return {
"rcarriga/nvim-notify",
config = function()
require("notify").setup({
stages = "fade_in_slide_out",
background_colour = "FloatShadow",
timeout = 2750,
render = "compact",
-- opacity = 75,
})
vim.notify = require("notify")
end,
}