Bruno BELANYI
f08f24cdba
All checks were successful
ci/woodpecker/push/check Pipeline was successful
18 lines
282 B
Lua
18 lines
282 B
Lua
local notify = require("notify")
|
|
local lsp_notify = require("lsp-notify")
|
|
|
|
notify.setup({
|
|
icons = {
|
|
DEBUG = "D",
|
|
ERROR = "E",
|
|
INFO = "I",
|
|
TRACE = "T",
|
|
WARN = "W",
|
|
},
|
|
stages = "slide",
|
|
})
|
|
|
|
vim.notify = notify
|
|
|
|
lsp_notify.setup({})
|