visual changes, addet fancy cmd-input and changed some of the notification styles.. Also revamped lsp icons to match notify (except for errors - I like to shit myself with )

This commit is contained in:
pika 2024-07-06 04:24:19 +02:00
parent a76e973992
commit 8135fbe32f
4 changed files with 62 additions and 2 deletions

View file

@ -4,9 +4,25 @@ return {
require("notify").setup({
stages = "fade_in_slide_out",
background_colour = "FloatShadow",
max_width = 60,
timeout = 2750,
render = "compact",
-- opacity = 75,
-- Minimum/Maximum width for notification windows
minimum_width = 30,
maximum_width = 60,
-- Function called when a new window is opened, use for changing win settings/config
on_open = nil,
-- Function called when a window is closed
on_close = nil,
icons = {
ERROR = "", -- alternate symbol 
WARN = "",
INFO = "",
DEBUG = "",
TRACE = "",
},
})
vim.notify = require("notify")
end,