Blame


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