This plugin adds a command which shows the verse of the day:
:VerseOfTheDay
Install BibleVOTD with your favorite package manager:
{
"TheBlckbird/bible-votd.nvim",
dependencies = {
"nvim-lua/plenary.nvim"
}
}
To show the verse of the day right after startup you have to add the following lines to you init.lua
:
local function show_verse_of_the_day()
require("bible-votd").show_verse_of_the_day()
end
vim.api.nvim_create_autocmd({ "VimEnter" }, { callback = show_verse_of_the_day })