dotfiles/nvim/lua/plugins/nvim-notify.lua

19 lines
293 B
Lua
Raw Normal View History

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