updates, gen works vbetter

This commit is contained in:
RingOfStorms (Joshua Bell) 2023-12-07 17:17:15 -06:00
parent 53fc7b700d
commit 724194b956
11 changed files with 49 additions and 41 deletions

View file

@ -1,6 +1,8 @@
return {
"rcarriga/nvim-notify",
dependencies = "nvim-telescope/telescope.nvim",
lazy = false,
priority = 999,
opts = {
top_down = false,
},
@ -8,8 +10,9 @@ return {
require("notify").setup(opts)
vim.notify = require("notify")
require('telescope').load_extension("notify")
end,
keys = {
{ "<leader>fn", "<cmd>Telescope notify<cr>", desc = "Telescope search notifications", mode = { "n", "v", "x" } },
{ "<leader>fn", ":Telescope notify<cr>", desc = "Telescope search notifications", mode = { "n", "v", "x" } },
},
}