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