Files
dotfiles/nvim/lua/kickstart/plugins/notify.lua
2026-03-12 12:35:37 +05:30

17 lines
263 B
Lua

return {
{
"rcarriga/nvim-notify",
config = function()
require("notify").setup({
-- other stuff
background_colour = "#000000",
max_width = "60",
render = "minimal",
timeout = 2000,
top_down = false,
fps = 1,
})
end,
},
}