Skip to content

A simple plugin to greet you with a tip when you launch Neovim

License

Notifications You must be signed in to change notification settings

dheerajshenoy/tip.nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A simple plugin to greet you with a tip when you launch Neovim

Demo

tip.nvim shows a tip every time a new neovim window is opened. You can recall the tip shown at a later point using the user command :Tip.

Why the fork ?

I didn't like the default Tip.nvim plugin and wanted to remove the dependency on nvim-notify and use the builtin notify ui library in neovim.

Requirements

Installation

  • I have shown the snippet of code for installing using lazy.nvim. Snippet can easily be adapted for other package manager.
-- Lazy.nvim
return {
    "dheerajshenoy/tip.nvim",
    event = "VimEnter",
    init = function()
        -- Default config
        --- @type Tip.config
        require("tip").setup({
            prefix = "Tip! ",
            url = "https://vtip.43z.one"
        })
    end,
}

About

A simple plugin to greet you with a tip when you launch Neovim

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 100.0%