add nvim-notify

This commit is contained in:
Gered 2024-09-01 23:42:28 -04:00
parent 4e86ed636a
commit 1489d7c7e7
2 changed files with 19 additions and 0 deletions

View file

@ -27,6 +27,7 @@
"nvim-lint": { "branch": "master", "commit": "debabca63c0905b59ce596a55a8e33eafdf66342" },
"nvim-lspconfig": { "branch": "master", "commit": "3ad562700d0615818bf358268ac8914f6ce2b079" },
"nvim-nio": { "branch": "master", "commit": "a428f309119086dc78dd4b19306d2d67be884eee" },
"nvim-notify": { "branch": "master", "commit": "d333b6f167900f6d9d42a59005d82919830626bf" },
"nvim-treesitter": { "branch": "master", "commit": "749df308870381979dc098063973f6ace9968ef6" },
"nvim-web-devicons": { "branch": "master", "commit": "3722e3d1fb5fe1896a104eb489e8f8651260b520" },
"plenary.nvim": { "branch": "master", "commit": "ec289423a1693aeae6cd0d503bac2856af74edaa" },

View file

@ -0,0 +1,18 @@
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,
}