noice.lua 416 B

12345678910111213141516
  1. -- lazy.nvim
  2. return {
  3. "folke/noice.nvim",
  4. event = "VeryLazy",
  5. opts = {
  6. -- add any options here
  7. },
  8. dependencies = {
  9. -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
  10. "MunifTanjim/nui.nvim",
  11. -- OPTIONAL:
  12. -- `nvim-notify` is only needed, if you want to use the notification view.
  13. -- If not available, we use `mini` as the fallback
  14. "rcarriga/nvim-notify",
  15. },
  16. }