Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 995 Bytes

README.md

File metadata and controls

34 lines (27 loc) · 995 Bytes

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

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,
}