summaryrefslogtreecommitdiffstats
path: root/lua/core/overrides/notify.lua
blob: f816d86ad90c538e28923e8af5173df0f05d5451 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require('notify').setup(
  {
    icons = {
      DEBUG = "B",
      ERROR = "x",
      INFO = "i",
      TRACE = "t",
      WARN = "!"
    },
    minimum_width = 35,
    max_width = 80,
    render = "compact",
  }
)