nvim-notify.lua 534 B

12345678910111213141516171819202122232425
  1. -- 悬浮通知
  2. return {
  3. "rcarriga/nvim-notify",
  4. keys = {
  5. {
  6. "<leader>un",
  7. function()
  8. require("notify").dismiss({ silent = true, pending = true })
  9. end,
  10. desc = "Dismiss all Notifications",
  11. },
  12. },
  13. opts = {
  14. timeout = 3000,
  15. max_height = function()
  16. return math.floor(vim.o.lines * 0.75)
  17. end,
  18. max_width = function()
  19. return math.floor(vim.o.columns * 0.75)
  20. end,
  21. on_open = function(win)
  22. vim.api.nvim_win_set_config(win, { zindex = 100 })
  23. end,
  24. }
  25. }