nix-config/home/vim/plugin/settings/notify.lua
Bruno BELANYI 202bdbe698
All checks were successful
ci/woodpecker/push/check Pipeline was successful
WIP: home: vim: LSP notify
2023-08-07 10:51:01 +00:00

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