blob: 68941bbdb567cda3e475ad388c6c7f8498f7d9c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
return {
{
"rcarriga/nvim-notify",
event = "VeryLazy",
config = function()
vim.notify = require("notify")
end,
},
{
"nvim-telescope/telescope.nvim",
dependencies = { "rcarriga/nvim-notify" },
keys = {
{ "<leader>fn", "<cmd>Telescope notify<cr>", desc = "Notifications" },
},
config = function()
require("telescope").load_extension("notify")
end,
},
}
|