notification and screen resize helps

This commit is contained in:
RingOfStorms (Joshua Bell) 2023-09-07 10:02:25 -05:00
parent 39628e8f2f
commit 1f6dce4665
4 changed files with 109 additions and 86 deletions

View file

@ -0,0 +1,14 @@
return {
"rcarriga/nvim-notify",
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" },
},
}