2022-03-11 10:38:42 +01:00
|
|
|
local notify = require("notify")
|
2023-08-07 12:51:01 +02:00
|
|
|
local lsp_notify = require("lsp-notify")
|
2022-03-11 10:38:42 +01:00
|
|
|
|
|
|
|
notify.setup({
|
|
|
|
icons = {
|
|
|
|
DEBUG = "D",
|
|
|
|
ERROR = "E",
|
|
|
|
INFO = "I",
|
|
|
|
TRACE = "T",
|
|
|
|
WARN = "W",
|
|
|
|
},
|
|
|
|
stages = "slide",
|
|
|
|
})
|
|
|
|
|
|
|
|
vim.notify = notify
|
2023-08-07 12:51:01 +02:00
|
|
|
|
|
|
|
lsp_notify.setup({})
|