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 the closing line of preformatted blocks
8 set hide-pre-closing-line = 1
10 # If you have the duckling-proxy installed, decomment the following
11 # lines to use it for HTTP and HTTPS links.
12 #proxy "http" via "gemini://localhost:1965"
13 #proxy "https" via "gemini://localhost:1965"
15 # Some opinionated graphical improvements:
17 style line.item prefix " • " " "
18 style line.link prefix "→ " " "
20 style line.quote {
21 prefix " ┃ "
22 attr dim normal
23 }
25 style line.pre.start {
26 prefix "─── " " "
27 bg white
28 }
30 style line.pre {
31 bg white
32 fg black
33 }
35 style line.pre.end {
36 prefix "─── "
37 bg white
38 }
40 style line.compl.current {
41 bg cyan
42 attr normal
43 }