Skip to content

A neovim plugin that provides an implementation for vim.notify

License

Notifications You must be signed in to change notification settings

samsze0/notifier.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

notifier.nvim

A neovim plugin that provides an implementation for vim.notify

Usage

lazy.nvim

{
    "samsze0/notifier.nvim",
    config = function()
        require("notifier").setup({})
    end,
    dependencies = {
        "samsze0/utils.nvim"
    }
}
vim.info("Some string")
vim.warn("Some list", { 1, 2, 3 })
vim.error("Some table", { first = 1, second = 2, third = 3})

local notifier = require("notifier")

print(vim.inspect(notifier.all())) -- Print all notifications
-- Or
vim.info(notifier.all())

License

MIT

About

A neovim plugin that provides an implementation for vim.notify

Topics

Resources

License

Stars

Watchers

Forks

Languages