notify.nvim
is an notification framework plugin for neovim.
Using nvim-plug:
require('plug').add({
{
'wsdjeg/notify.nvim',
config = function()
require('notify').setup({})
end,
},
})
require('notify').setup({
easing_func = 'linear',
timeout = 3000,
borderchars = { '─', '│', '─', '│', '╭', '╮', '╯', '╰' },
})
local nt = require('notify')
nt.notify('normal message')
nt.notify('warn message', 'WarningMsg')
Use vim.notify
with this plugin:
vim.notify = function(msg, level, opt)
require('notify').notify(msg)
end
Like this plugin? Star the repository on GitHub.
Love this plugin? Follow me on GitHub and Twitter.
This project is licensed under the GPL-3.0 License.