1
0

Show notification window at the bottom

Probably less intrusive this way, we'll see...
This commit is contained in:
Patrick Auernig 2023-12-31 15:56:44 +01:00
parent bb4ddf3235
commit 4499fe820c

View File

@ -26,7 +26,13 @@ return {
{
"rcarriga/nvim-notify",
config = function()
vim.notify = require("notify")
local notify = require("notify")
notify.setup({
top_down = false,
})
vim.notify = notify
end
},