2024-09-01 23:42:28 -04:00
|
|
|
return {
|
|
|
|
'rcarriga/nvim-notify',
|
|
|
|
keys = {
|
|
|
|
{
|
|
|
|
'<leader>sy',
|
|
|
|
function()
|
|
|
|
vim.cmd 'Telescope notify'
|
|
|
|
end,
|
2024-09-07 15:49:37 -04:00
|
|
|
desc = 'Search: Notification Histor[y]',
|
2024-09-01 23:42:28 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
opts = {
|
|
|
|
timeout = 5000,
|
|
|
|
},
|
|
|
|
init = function()
|
|
|
|
vim.notify = require 'notify'
|
|
|
|
end,
|
|
|
|
}
|