A plugin for practicing NeoVim. Inspired by VimBeGood
Lazy
{
"doriancmore/practice.nvim",
config = function()
require('practice').setup()
end
}
:StartTypingChallenge 10
{
"doriancmore/practice.nvim",
config = function()
local practice = require('practice')
practice.setup()
vim.keymap.set("n", "<leader>pc", function()
practice.open(10)
end, { desc = "Practice" })
end
}
Where 10 is the number of challenges you'd like to complete.