all repos — bibel @ 4d989dbd3374640c4671c3a77cc588c4fb078be0

Unnamed repository; edit this file 'description' to name the repository.

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). If empty,
 9# automatically uses first JSON file found in $XDG_DATA_HOME/bibel
10bible_path = ""
11
12# Reading mode: "evangelion" (four Gospels), "new_testament", "old_testament", "bible"
13reading_mode = "evangelion"
14
15[tui]
16  # Whether to show the quit message "Press q to quit..."
17  show_quit_message = true
18  
19  # Box border style: "rounded", "double", "single", or "hidden"
20  border_style = "rounded"
21  
22  # Colours for TUI elements (empty = adaptive to terminal)
23  # Use hex colours like "#FF0000" or named colours like "red"
24  border_colour = ""    # Box border colour
25  header_colour = ""    # Header text colour  
26  text_colour = ""      # Bible text colour
27  quit_colour = ""      # Quit message colour
28
29[formatter]
30  # Whether to use ANSI colours in formatted output mode
31  use_colours = true
32  
33  # Header format template
34  # Available variables: {book}, {chapter}, {first_verse}, {second_verse}
35  header_format = "{book} {chapter}\nw. {first_verse}-{second_verse}"
36  
37  # Whether to print each verse on a numbered line with verse number
38  numbered = false
39  
40  # Whether to render pilcrows (ΒΆ) as blank lines instead of ignoring them
41  paragraphs = false
42
43[date_progression]
44  # Number of verses to read per day
45  verses_per_day = 12
46  
47  # Start date for yearly progression (format: "1 January")
48  # Empty means 1 January of current year
49  start_date = ""
50
51# Easter type: "orthodox" (default) or "latin" (i.e., roman catholic)
52easter_type = "orthodox"