No description
Find a file
Barrett Ruth cd96a269a4 docs: add icons config, PendingTab recipes, and demo infrastructure
Problem: icon customization and auto-start workflow are undocumented;
no demo asset exists for the README.

Solution: document pending.Icons in vimdoc with nerd font and ASCII
recipes, add PendingTab to commands and mappings, add open-on-startup
recipe, add demo-init.lua and demo.tape for VHS screenshot generation,
add assets/ directory, add README icons section and demo placeholder.
2026-02-26 19:17:49 -05:00
.github doc: minify readme (#24) 2026-02-25 09:40:06 -05:00
assets docs: add icons config, PendingTab recipes, and demo infrastructure 2026-02-26 19:17:49 -05:00
doc docs: add icons config, PendingTab recipes, and demo infrastructure 2026-02-26 19:17:49 -05:00
lua/pending feat(buffer): render icon overlays from config.icons 2026-02-26 19:14:40 -05:00
plugin feat(plugin): add PendingTab command and <Plug>(pending-tab) 2026-02-26 19:14:51 -05:00
scripts docs: add icons config, PendingTab recipes, and demo infrastructure 2026-02-26 19:17:49 -05:00
spec docs: add icons config, PendingTab recipes, and demo infrastructure 2026-02-26 19:17:49 -05:00
syntax refactor: adopt markdown-style checkbox buffer format (#20) 2026-02-24 23:21:55 -05:00
.busted build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00
.editorconfig build: initial repo scaffold 2026-02-24 15:08:35 -05:00
.gitignore build: initial repo scaffold 2026-02-24 15:08:35 -05:00
.luarc.json build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00
.pre-commit-config.yaml ci: format 2026-02-24 15:17:24 -05:00
flake.lock build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00
flake.nix build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00
LICENSE build: initial repo scaffold 2026-02-24 15:08:35 -05:00
pending.nvim-scm-1.rockspec feat: rename 2026-02-24 15:21:44 -05:00
README.md docs: add icons config, PendingTab recipes, and demo infrastructure 2026-02-26 19:17:49 -05:00
selene.toml build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00
stylua.toml build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00
vim.yaml build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00

pending.nvim

Edit tasks like text. :w saves them.

demo

Requirements

  • Neovim 0.10+
  • (Optionally) curl and openssl for Google Calendar and Google Task sync

Installation

Install with your package manager of choice or via luarocks:

luarocks install pending.nvim

Documentation

:help pending.nvim

Icons

pending.nvim renders task status and metadata using configurable icon characters. The defaults use plain unicode (no nerd font required):

vim.g.pending = {
  icons = {
    pending = '○', done = '✓', priority = '●',
    header = '▸', due = '·', recur = '↺', category = '#',
  },
}

See :help pending.Icons for nerd font examples.

Acknowledgements