refactor(config): default icons to ascii (#55)
* 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
This commit is contained in:
parent
bc260e7ed0
commit
76aa22472d
6 changed files with 28 additions and 36 deletions
|
|
@ -82,12 +82,12 @@ local defaults = {
|
|||
},
|
||||
sync = {},
|
||||
icons = {
|
||||
pending = '○',
|
||||
done = '✓',
|
||||
priority = '●',
|
||||
header = '▸',
|
||||
due = '·',
|
||||
recur = '↺',
|
||||
pending = '-',
|
||||
done = 'x',
|
||||
priority = '!',
|
||||
header = '>',
|
||||
due = '.',
|
||||
recur = '~',
|
||||
category = '#',
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue