TobinPalmer/Tip.nvim

github github
startup
stars 61
issues 0
subscribers 1
forks 1
CREATED

2023-11-10

UPDATED

3 months ago


Demo

Important Note

The original website vtip which I used appears to be down. I am currently hosting a similar website that is in very early stages of development.

This website is focused more on modern tips and plugin suggestions. You can check in on the development and contribute tips here.

Requirements

Installation

-- Lazy.nvim
return {
  "TobinPalmer/Tip.nvim",
  event = "VimEnter",
  init = function()
    -- Default config
    --- @type Tip.config
    require("tip").setup({
      seconds = 2,
      title = "Tip!",
      url = "https://vtip.43z.one", -- Or https://vimiscool.tech/neotip
    })
  end,
}