notification and screen resize helps
This commit is contained in:
parent
39628e8f2f
commit
1f6dce4665
4 changed files with 109 additions and 86 deletions
14
lua/plugins/vim-notify.lua
Normal file
14
lua/plugins/vim-notify.lua
Normal 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" },
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue