]> git.armaanb.net Git - lightcards.git/blob - config.py
Rename confirm_quit option to quit_confirmation
[lightcards.git] / config.py
1 ###############################################################################
2 # LIGHTCARDS DEFAULT CONFIG FILE                                              #
3 ###############################################################################
4 import curses
5
6 ###############################################################################
7 # STARTUP OPTIONS
8
9 alphabetize = False
10 shuffle = False
11 reverse = False
12 cache = True
13 table = False  # set to integer or range
14 lenient = False
15
16 default_view = 1
17
18 ###############################################################################
19 # APPEARANCE
20
21 progress_char = "ยป"
22
23 highlight_color = curses.COLOR_CYAN
24 starred_color = curses.COLOR_YELLOW
25 error_color = curses.COLOR_RED
26
27 ###############################################################################
28 # KEYBINDINGS
29
30 card_prev = ["h", "KEY_LEFT"]
31 card_next = ["l", "KEY_RIGHT"]
32 card_flip = ["j", "k", "KEY_UP", "KEY_DOWN"]
33 card_star = ["i", "/"]
34 card_first = ["0", "^", "KEY_HOME"]
35 card_last = ["$", "KEY_END"]
36
37 help_disp = ["H", "?"]
38
39 menu_disp = "m"
40 menu_reset = "y"
41 menu_alphabetize = "a"
42 menu_shuffle = "z"
43 menu_reverse = "t"
44 menu_unstar = "u"
45 menu_star = "d"
46 menu_stars_only = "s"
47 menu_open_file = "e"
48 menu_restart = "r"
49
50 view_one = "1"
51 view_two = "2"
52 view_three = "3"
53
54 quit_key = "q"
55
56 ###############################################################################
57 # OTHER
58
59 quit_confirmation = True
60 show_menu_at_end = True
61 debug = False
62
63 ###############################################################################