Update notify config

This commit is contained in:
2023-09-15 22:37:53 +02:00
parent 757530fbdc
commit 1917853706
+6 -1
View File
@@ -18,7 +18,12 @@
local telescope = require("telescope")
vim.notify = require("notify")
local notify = require("notify")
notify.setup({
render = "default",
stages = "fade",
})
vim.notify = notify
telescope.load_extension("notify")
vim.keymap.set(
"n", "<leader>fn", function () telescope.extensions.notify.notify() end