Blob


1 # break long lines at max at 92 columns
2 set fill-column = 92
4 # enable colors regardless of the NO_COLOR environment variable
5 set enable-colors = 1
7 # Hide
8 set hide-pre-context = 0
9 set hide-pre-blocks = 1
11 # If you have the duckling-proxy installed, decomment the following
12 # lines to use it for HTTP and HTTPS links.
13 #proxy "http" via "gemini://localhost:1965"
14 #proxy "https" via "gemini://localhost:1965"
16 # Some opinionated graphical improvements:
18 style line.item prefix " • " " "
19 style line.link prefix "→ " " "
21 style line.quote {
22 prefix " ┃ "
23 attr dim normal
24 }
26 style line.pre.start {
27 prefix "─── " " "
28 bg white
29 }
31 style line.pre {
32 bg white
33 fg black
34 }
36 style line.pre.end {
37 prefix "─── "
38 bg white
39 }
41 style line.compl.current {
42 bg cyan
43 attr normal
44 }