commit bee2da6f59d9de0bcda1e548c9368548e7d4c2fc
parent 209f4d67ed121998f9d606d82e78c33f96a26c73
Author: linus <mail@linus-behrens.de>
Date: Tue, 8 Jul 2025 18:25:19 +0200
taskell, nvim spell and idk plan9???
Diffstat:
6 files changed, 104 insertions(+), 0 deletions(-)
diff --git a/.config/nvim/spell/de.utf-8.spl b/.config/nvim/spell/de.utf-8.spl
Binary files differ.
diff --git a/.config/nvim/spell/de.utf-8.sug b/.config/nvim/spell/de.utf-8.sug
Binary files differ.
diff --git a/.config/taskell/bindings.ini b/.config/taskell/bindings.ini
@@ -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 = <
diff --git a/.config/taskell/config.ini b/.config/taskell/config.ini
@@ -0,0 +1,17 @@
+[general]
+filename = taskell.md
+
+[layout]
+padding = 1
+column_width = 30
+column_padding = 3
+description_indicator = "≡"
+statusbar = true
+
+[markdown]
+title = "##"
+task = "-"
+summary = " >"
+due = " @"
+subtask = " *"
+localTimes = false
diff --git a/.config/taskell/template.md b/.config/taskell/template.md
@@ -0,0 +1,8 @@
+## To Do
+
+
+## Doing
+
+
+## Done
+
diff --git a/.config/taskell/theme.ini b/.config/taskell/theme.ini
@@ -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