aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/noice.lua
blob: 575cfcf7472019566b17931933059cce154e1305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
local config = function()
  require("notify").setup({
    render = "wrapped-compact",
    max_width = 50
  })
end

return {
  "folke/noice.nvim",
  lazy = true,
  event = "VeryLazy",
  opts = {
    -- add any options here
  },
  dependencies = {
    "MunifTanjim/nui.nvim",
    {
      "rcarriga/nvim-notify",
      config = config,
    },
  },
}