-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.yml
More file actions
74 lines (69 loc) · 1.66 KB
/
config.yml
File metadata and controls
74 lines (69 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Taskim Configuration File
# Edit this file to customize your Taskim experience
# UI settings
show_keybinds: false # Whether to show keybinds in the UI by default
show_preview: true
wrap_text: false # Whether to wrap text by default
open_in_editor: true
editor_path: "~/nvim-macos-arm64/bin/nvim"
file-mode:
enabled: true
path: "tasks"
years: 1
# UI Colors (use ratatui color names or indexed colors (16-231))
colors:
selected_task_bg: "Gray"
selected_task_fg: "Black"
selected_task_bold: true
selected_completed_task_bg: "DarkGray"
selected_completed_task_fg: "Green"
completed_task_fg: "Green"
default_task_fg: "White"
day_number_fg: "White"
default_bg: "Black"
default_fg: "White"
# Task Edit Popup Colors (use ratatui color names)
task_edit_colors:
popup_bg: "Black"
popup_fg: "White"
border_fg: "DarkGray"
border_selected_fg: "Gray"
title_fg: "White"
title_selected_fg: "White"
content_fg: "White"
content_selected_fg: "White"
instructions_fg: "Gray"
instructions_key_fg: "White"
# Keybindings (use string format, e.g. 'h', 'j', 'k', 'l', 'Ctrl+r', 'Esc')
keybindings:
move_left: "h"
move_down: "j"
move_up: "k"
move_right: "l"
insert_edit: "i"
insert_above: "O"
insert_below: "o"
delete: "x"
delete_line: "d"
toggle_complete: "c"
yank: "y"
paste: "p"
paste_above: "P"
undo: "u"
redo: "Ctrl+r"
next_month: "L"
prev_month: "H"
next_year: "G"
prev_year: "g"
next_week: "w"
prev_week: "b"
first_day_of_month: "0"
last_day_of_month: "$"
go_to_today: "t"
save_task: "Enter"
cancel_edit: "Esc"
switch_field: "Tab"
backspace: "Backspace"
quit: "q"
quit_alt: "Esc"
force_quit: "Ctrl+c"