Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/user/notify.lua

17 lines
278 B
Lua
Raw Normal View History

2022-07-09 13:10:31 +00:00
local status_ok, notify = pcall(require, "notify")
if not status_ok then
return
end
notify.setup({
stages = "fade_in_slide_out",
on_open = nil,
on_close = nil,
render = "default",
timeout = 175,
background_colour = "Normal",
minimum_width = 10,
})
vim.notify = notify