···5656 use "nvim-lualine/lualine.nvim"
5757 use "goolord/alpha-nvim"
5858 use "folke/which-key.nvim"
5959+ use "rcarriga/nvim-notify"
59606061 -- Terminal
6162 use {
+20
nvim/lua/plugins/notify.lua
···11+local ok, notify = pcall(require, "notify")
22+if not ok then
33+ return
44+end
55+66+local renderers = require("notify.render")
77+88+notify.setup {
99+ stages = 'slide',
1010+ timeout = 2500,
1111+ render = function (bufnr, notif, highl)
1212+ if notif.title[1] == "" then
1313+ return renderers.minimal(bufnr, notif, highl)
1414+ else
1515+ return renderers.default(bufnr, notif, highl)
1616+ end
1717+ end
1818+}
1919+2020+vim.notify = notify