Skip to content

doriancmore/practice.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

practice.nvim

A plugin for practicing NeoVim. Inspired by VimBeGood

Installation

Lazy

{
    "doriancmore/practice.nvim",
    config = function()
        require('practice').setup()
    end
}

Usage

:StartTypingChallenge 10

Using a keymap

{
    "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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages