WIP: home: vim: notify
This commit is contained in:
parent
7ace62da72
commit
5c9394f5e5
4 changed files with 18 additions and 0 deletions
14
home/vim/plugin/settings/notify.lua
Normal file
14
home/vim/plugin/settings/notify.lua
Normal 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
|
||||
|
|
@ -22,3 +22,4 @@ telescope.setup({
|
|||
|
||||
telescope.load_extension("fzf")
|
||||
telescope.load_extension("lsp_handlers")
|
||||
telescope.load_extension("notify")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue