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 13564f5517
commit fe56acdbe2

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
},