mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 11:02:13 +02:00
added notification plugin for neovim
This commit is contained in:
@@ -0,0 +1,20 @@
|
|||||||
|
return {
|
||||||
|
"rcarriga/nvim-notify",
|
||||||
|
event = "VeryLazy",
|
||||||
|
config = function()
|
||||||
|
vim.notify = require("notify")
|
||||||
|
|
||||||
|
require("notify.config").setup({
|
||||||
|
stages = "fade_in_slide_out",
|
||||||
|
timeout = 5000,
|
||||||
|
background_colour = "#1e222a",
|
||||||
|
icons = {
|
||||||
|
ERROR = "",
|
||||||
|
WARN = "",
|
||||||
|
INFO = "",
|
||||||
|
DEBUG = "",
|
||||||
|
TRACE = "✎",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user