tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

hgrc (896B)


      1 # By default the progress bar starts after 3s and updates every 0.1s. We
      2 # change this so it shows and updates every 1.0s.
      3 # We also tell progress to assume a TTY is present so updates are printed
      4 # even if there is no known TTY.
      5 [progress]
      6 delay = 1.0
      7 refresh = 1.0
      8 assume-tty = true
      9 
     10 [extensions]
     11 share =
     12 sparse =
     13 robustcheckout = /usr/local/mercurial/robustcheckout.py
     14 
     15 [hostsecurity]
     16 # When running a modern Python, Mercurial will default to TLS 1.1+.
     17 # When running on a legacy Python, Mercurial will default to TLS 1.0+.
     18 # There is no good reason we shouldn't be running a modern Python
     19 # capable of speaking TLS 1.2. And the only Mercurial servers we care
     20 # about should be running TLS 1.2. So make TLS 1.2 the minimum.
     21 minimumprotocol = tls1.2
     22 
     23 # Settings to make 1-click loaners more useful.
     24 [extensions]
     25 histedit =
     26 rebase =
     27 
     28 [diff]
     29 git = 1
     30 showfunc = 1
     31 
     32 [pager]
     33 pager = LESS=FRSXQ less