nvim/lua/plugins/vim-notify.lua
RingOfStorms (Joshua Bell) dbb79dd46b udpate keymaps
2023-10-04 10:53:18 -05:00

15 lines
296 B
Lua

return {
"rcarriga/nvim-notify",
event = "VeryLazy",
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" },
},
}