blob: 1a3d1e9110ccaf7e3cbcef47a81794223cb828c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
local status_ok, notify = pcall(require, "notify")
if not status_ok then
return
end
notify.setup {
icons = {
DEBUG = "B",
ERROR = "x",
INFO = "i",
TRACE = "t",
WARN = "!"
},
minimum_width = 35,
max_width = 80,
}
|