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

14 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