Add telescope keymap for notify

This commit is contained in:
2023-09-04 03:42:15 +02:00
parent 697137186d
commit 85865ba429
+6 -1
View File
@@ -16,5 +16,10 @@
-- https://github.com/rcarriga/nvim-notify
local telescope = require("telescope")
vim.notify = require("notify")
require("telescope").load_extension("notify")
telescope.load_extension("notify")
vim.keymap.set(
"n", "<leader>fn", function () telescope.extensions.notify.notify() end
)