From fe56acdbe2718900b9281b4a6b31a54ff8f39afc Mon Sep 17 00:00:00 2001 From: Patrick Auernig Date: Sun, 31 Dec 2023 15:56:44 +0100 Subject: [PATCH] Show notification window at the bottom Probably less intrusive this way, we'll see... --- lua/valeth/plugins/fancy.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lua/valeth/plugins/fancy.lua b/lua/valeth/plugins/fancy.lua index b8dc686..eb086f9 100644 --- a/lua/valeth/plugins/fancy.lua +++ b/lua/valeth/plugins/fancy.lua @@ -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 },