]> git.armaanb.net Git - lightcards.git/blob - config.py
Allow for config files to be incomplete
[lightcards.git] / config.py
1 ###############################################################################
2 # LIGHTCARDS DEFAULT CONFIG FILE                                              #
3 ###############################################################################
4
5 ###############################################################################
6 # STARTUP OPTIONS
7
8 alphabetize = False
9 shuffle = False
10 reverse = False
11 cache = True
12
13 default_view = 1
14
15 ###############################################################################
16 # APPEARANCE
17
18 disp_progress = True
19 progress_char = "ยป"
20 disp_sidebar = True
21 disp_bar = True
22
23 bar_sections = ["starred_status", "starred_count", "side", "view"]
24
25 highlight_color = "green"
26 starred_color = "yellow"
27
28 ###############################################################################
29 # KEYBINDINGS
30
31 card_prev = ["h", "KEY_LEFT"]
32 card_next = ["l", "KEY_RIGHT"]
33 card_flip = ["j", "k", "KEY_UP", "KEY_DOWN"]
34 card_star = ["i", "/"]
35 card_first = ["0", "^", "KEY_HOME"]
36 card_last = ["$", "KEY_END"]
37
38 help_disp = ["H", "?"]
39
40 menu_disp = "m"
41
42 view_one = "1"
43 view_two = "2"
44 view_three = "3"
45
46 ###############################################################################
47 # OTHER
48
49 confirm_quit = True
50 debug = False
51
52 ###############################################################################