configs/config.example.toml (view raw)
1# bibel configuration file
2# Location: $XDG_CONFIG_HOME/bibel/config.toml (~/.config/bibel/config.toml)
3
4# Output mode: "tui" (interactive terminal UI), "formatted" (ANSI-coloured text),
5# or "plain" (plain text without formatting)
6output_mode = "tui"
7
8# Path to Bible data file (relative to executable or absolute path)
9bible_path = "books/pol_nbg.json"
10
11# Reading mode: "evangelion" (four Gospels), "new_testament", "old_testament", "bible"
12reading_mode = "evangelion"
13
14[tui]
15 # Whether to show the quit message "Press q to quit..."
16 show_quit_message = true
17
18 # Box border style: "rounded", "double", "single", or "hidden"
19 border_style = "rounded"
20
21 # Colours for TUI elements (empty = adaptive to terminal)
22 # Use hex colours like "#FF0000" or named colours like "red"
23 border_colour = "" # Box border colour
24 header_colour = "" # Header text colour
25 text_colour = "" # Bible text colour
26 quit_colour = "" # Quit message colour
27
28[formatter]
29 # Whether to use ANSI colours in formatted output mode
30 use_colours = true
31
32 # Header format template
33 # Available variables: {book}, {chapter}, {first_verse}, {second_verse}
34 header_format = "{book} {chapter}\nw. {first_verse}-{second_verse}"
35
36[date_progression]
37 # Number of verses to read per day
38 verses_per_day = 12
39
40 # Start date for yearly progression (format: "1 January")
41 # Empty means 1 January of current year
42 start_date = ""