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:
parent
2b4dd54444
commit
a76e973992
8 changed files with 205 additions and 90 deletions
13
lua/pika/plugins/notify.lua
Normal file
13
lua/pika/plugins/notify.lua
Normal 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,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue