Skip to content

tobb10001/indexcard.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

indexcard.nvim

Display an indexcard to help remember stuff you want to learn.

Rationale

I frequently find out something new about vim or Neovim, that I want to integrate into my workflow. However, when I find myself back in Neovim, I'm back in my usual workflow and completely forget about what I wanted to integrate.

This plugin allows you to define an index card and display it whenever you want to remember what you wanted to learn.

Setup

require("indexcard").setup({
    cards = {
        {
            "This is a card.",
            "dd - delete line under cursor",
        },
        {
            "This is another card.",
        },
    },
})
Property Type Description
cards string[][] Cards to configure. Every card is a table of individual lines.

Usage

:lua require("indexcard").show()
:lua require("indexcard").hide()
:lua require("indexcard").toggle()
:lua require("indexcard").next()
:lua require("indexcard").prev()

About

Learn NeoVim better.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages