Compare commits
No commits in common. "e1e3395433e1f52b3231ef1191b80f2d19fe38a7" and "77ee7e9766e857c180f21c4faa8b5d13b3f02f19" have entirely different histories.
e1e3395433
...
77ee7e9766
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
try:
|
||||
import readline
|
||||
except ImportError:
|
||||
print("Module readline not available.")
|
||||
else:
|
||||
# Don't write history on exit
|
||||
readline.write_history_file = lambda *args: None
|
||||
|
||||
# Try to install rich's prettification stuff
|
||||
try:
|
||||
import rich.pretty
|
||||
|
|
|
@ -34,5 +34,3 @@
|
|||
# On the plus side, lacking it should cause git to fatal so I never miss it.
|
||||
[include]
|
||||
path = ~/.gitconfig.local
|
||||
[init]
|
||||
defaultBranch = main
|
||||
|
|
Loading…
Add table
Reference in a new issue