mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 08:34:41 -05:00
feat(update): update
This commit is contained in:
27
lua/plugins/ui-notify.lua
Normal file
27
lua/plugins/ui-notify.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
return {
|
||||
"rcarriga/nvim-notify",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
local notify = require("notify")
|
||||
notify.setup({
|
||||
background_colour = "#000000",
|
||||
fps = 60,
|
||||
icons = {
|
||||
DEBUG = "",
|
||||
ERROR = "",
|
||||
INFO = "",
|
||||
TRACE = "✎",
|
||||
WARN = ""
|
||||
},
|
||||
level = 2,
|
||||
minimum_width = 50,
|
||||
render = "compact",
|
||||
stages = "fade_in_slide_out",
|
||||
timeout = 3000,
|
||||
top_down = true,
|
||||
})
|
||||
|
||||
-- Set nvim-notify as the default notification handler
|
||||
vim.notify = notify
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user