nix-config/home/vim/plugin/settings/notify.lua
Bruno BELANYI f08f24cdba
All checks were successful
ci/woodpecker/push/check Pipeline was successful
WIP: home: vim: LSP notify
2023-08-07 15:38:28 +00:00

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({})