cumulative update
This commit is contained in:
parent
3ecbac352e
commit
c360fc2339
71 changed files with 3281 additions and 380 deletions
54
.config/taskell/bindings.ini
Normal file
54
.config/taskell/bindings.ini
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
# general
|
||||
quit = q
|
||||
undo = u
|
||||
redo = r
|
||||
search = /
|
||||
help = ?
|
||||
due = !
|
||||
|
||||
# navigation
|
||||
previous = k
|
||||
next = j
|
||||
left = h
|
||||
right = l
|
||||
bottom = G
|
||||
top = g
|
||||
|
||||
# new tasks
|
||||
new = a
|
||||
newAbove = O
|
||||
newBelow = o
|
||||
duplicate = +
|
||||
|
||||
# editing tasks
|
||||
edit = e, A, i
|
||||
clear = C
|
||||
delete = D
|
||||
detail = <Enter>
|
||||
dueDate = @
|
||||
clearDate = <Backspace>
|
||||
|
||||
# moving tasks
|
||||
moveUp = K
|
||||
moveDown = J
|
||||
# move to top of previous list
|
||||
moveLeftTop = ˙
|
||||
# move to top of next list
|
||||
moveRightTop = ¬
|
||||
# move to bottom of previous list
|
||||
moveLeftBottom = H
|
||||
# move to bottom of next list
|
||||
moveRightBottom = L
|
||||
# move to bottom of last list
|
||||
complete = <Space>
|
||||
# move to top of last list
|
||||
completeToTop = T
|
||||
# select a list to move to
|
||||
moveMenu = m
|
||||
|
||||
# lists
|
||||
listNew = N
|
||||
listEdit = E
|
||||
listDelete = X
|
||||
listRight = >
|
||||
listLeft = <
|
||||
17
.config/taskell/config.ini
Normal file
17
.config/taskell/config.ini
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
[general]
|
||||
filename = TASKS.md
|
||||
|
||||
[layout]
|
||||
padding = 1
|
||||
column_width = 30
|
||||
column_padding = 3
|
||||
description_indicator = "≡"
|
||||
statusbar = false
|
||||
|
||||
[markdown]
|
||||
title = "##"
|
||||
task = "-"
|
||||
summary = " >"
|
||||
due = " @"
|
||||
subtask = " *"
|
||||
localTimes = false
|
||||
8
.config/taskell/template.md
Normal file
8
.config/taskell/template.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
## To Do
|
||||
|
||||
|
||||
## Doing
|
||||
|
||||
|
||||
## Done
|
||||
|
||||
25
.config/taskell/theme.ini
Normal file
25
.config/taskell/theme.ini
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
[other]
|
||||
|
||||
; list title
|
||||
title.fg = green
|
||||
|
||||
; status bar
|
||||
statusBar.bg = blue
|
||||
statusBar.fg = black
|
||||
|
||||
; current list title
|
||||
titleCurrent.fg = blue
|
||||
|
||||
; current task
|
||||
taskCurrent.fg = magenta
|
||||
|
||||
; subtasks
|
||||
; selected
|
||||
subtaskCurrent.fg = magenta
|
||||
; incomplete
|
||||
subtaskIncomplete.fg = blue
|
||||
; complete
|
||||
subtaskComplete.fg = yellow
|
||||
|
||||
; disabled
|
||||
disabled.fg = yellow
|
||||
Loading…
Add table
Add a link
Reference in a new issue