14 lines
277 B
Lua
14 lines
277 B
Lua
return {
|
|
"rcarriga/nvim-notify",
|
|
opts = {
|
|
top_down = false,
|
|
},
|
|
config = function(_, opts)
|
|
require("notify").setup(opts)
|
|
|
|
vim.notify = require("notify")
|
|
end,
|
|
keys = {
|
|
{ "<leader>fn", "<cmd>Telescope notify<cr>", desc = "Telescope search notifications" },
|
|
},
|
|
}
|