all repos — bibel @ 01c758ad65f39049a6b57f85c0e09c74b5f1f1ea

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)
 9bible_path = "books/pol_nbg.json"
10
11[tui]
12  # Whether to show the quit message "Press q to quit..."
13  show_quit_message = true
14  
15  # Box border style: "rounded", "double", "single", or "hidden"
16  border_style = "rounded"
17  
18  # Colours for TUI elements (empty = adaptive to terminal)
19  # Use hex colours like "#FF0000" or named colours like "red"
20  border_colour = ""    # Box border colour
21  header_colour = ""    # Header text colour  
22  text_colour = ""      # Bible text colour
23  quit_colour = ""      # Quit message colour
24
25[formatter]
26  # Whether to use ANSI colours in formatted output mode
27  use_colours = true
28  
29  # Header format template
30  # Available variables: {book}, {chapter}, {first_verse}, {second_verse}
31  header_format = "{book} {chapter}\nw. {first_verse}-{second_verse}"
32
33[date_progression]
34  # Number of verses to read per day
35  verses_per_day = 12
36  
37  # Start date for yearly progression (format: "1 January")
38  # Empty means 1 January of current year
39  start_date = ""