feat(config): add icons table with unicode defaults
This commit is contained in:
parent
1748e5caa1
commit
a4a470ce5a
1 changed files with 19 additions and 0 deletions
|
|
@ -1,3 +1,12 @@
|
|||
---@class pending.Icons
|
||||
---@field pending string
|
||||
---@field done string
|
||||
---@field priority string
|
||||
---@field header string
|
||||
---@field due string
|
||||
---@field recur string
|
||||
---@field category string
|
||||
|
||||
---@class pending.GcalConfig
|
||||
---@field calendar? string
|
||||
---@field credentials_path? string
|
||||
|
|
@ -38,6 +47,7 @@
|
|||
---@field keymaps pending.Keymaps
|
||||
---@field sync? pending.SyncConfig
|
||||
---@field gcal? pending.GcalConfig
|
||||
---@field icons pending.Icons
|
||||
|
||||
---@class pending.config
|
||||
local M = {}
|
||||
|
|
@ -71,6 +81,15 @@ local defaults = {
|
|||
prev_task = '[t',
|
||||
},
|
||||
sync = {},
|
||||
icons = {
|
||||
pending = '○',
|
||||
done = '✓',
|
||||
priority = '●',
|
||||
header = '▸',
|
||||
due = '·',
|
||||
recur = '↺',
|
||||
category = '#',
|
||||
},
|
||||
}
|
||||
|
||||
---@type pending.Config?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue