19 lines
294 B
Lua
19 lines
294 B
Lua
|
return {
|
||
|
'rcarriga/nvim-notify',
|
||
|
keys = {
|
||
|
{
|
||
|
'<leader>sy',
|
||
|
function()
|
||
|
vim.cmd 'Telescope notify'
|
||
|
end,
|
||
|
desc = '[S]earch Notification Histor[y]',
|
||
|
},
|
||
|
},
|
||
|
opts = {
|
||
|
timeout = 5000,
|
||
|
},
|
||
|
init = function()
|
||
|
vim.notify = require 'notify'
|
||
|
end,
|
||
|
}
|