A simple and super minimal neovim startup screen plugin that displays a random quote from api.quotable.io.
- Super minimalistic, calming opening screen.
- Random quote from quotable.io local copy.
- No dependencies.
- Provides a command to jump into the startup screen at any time.
You can install the plugin using your preferred package manager, below is an example using Lazy:
{
"kungfusheep/randomquote.nvim",
event = "VimEnter",
config = function()
require("randomquote").setup()
end
},
You can configure the plugin using the setup
function. The configuration is currently limited to being able to set the key to close the startup screen manually.
require("randomquote").setup({
close_key = "q", -- Key to close the startup screen manually
})
The plugin is automatically triggered on startup. You can also manually trigger it using the :RandomQuote
command.
This plugin is released under the MIT License.