15 lines
219 B
Lua
15 lines
219 B
Lua
|
local notify = require("notify")
|
||
|
|
||
|
notify.setup({
|
||
|
icons = {
|
||
|
DEBUG = "D",
|
||
|
ERROR = "E",
|
||
|
INFO = "I",
|
||
|
TRACE = "T",
|
||
|
WARN = "W",
|
||
|
},
|
||
|
stages = "slide",
|
||
|
})
|
||
|
|
||
|
vim.notify = notify
|