A simple plugin to greet you with a tip when you launch Neovim
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.
-- 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,
}