Blame


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