* refactor(config): default icons to ascii Problem: default icons used unicode characters (○, ✓, ●, ▸, ·, ↺) which render poorly in some terminals and font configurations. Solution: replace defaults with ascii equivalents (-, x, !, >, ., ~). Users can still override to unicode or nerd font icons via config. * ci: ignore library type checking
989 B
989 B
pending.nvim
Edit tasks like text. :w saves them.
Requirements
- Neovim 0.10+
- (Optionally)
curlandopensslfor 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 are ASCII-only (no unicode or nerd font required):
vim.g.pending = {
icons = {
pending = '-', done = 'x', priority = '!',
header = '>', due = '.', recur = '~', category = '#',
},
}
See :help pending.Icons for unicode and nerd font examples.
