WIP: home: vim: notify

This commit is contained in:
Bruno BELANYI 2022-03-11 10:38:42 +01:00
parent 7ace62da72
commit 5c9394f5e5
4 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,14 @@
local notify = require("notify")
notify.setup({
icons = {
DEBUG = "D",
ERROR = "E",
INFO = "I",
TRACE = "T",
WARN = "W",
},
stages = "slide",
})
vim.notify = notify

View file

@ -22,3 +22,4 @@ telescope.setup({
telescope.load_extension("fzf")
telescope.load_extension("lsp_handlers")
telescope.load_extension("notify")