From 91d9d4c8727dc4e2db740e2adba1452f4187179b Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Mon, 17 Feb 2025 10:43:58 -0800 Subject: [PATCH 1/2] Remove pythonrc log disabling It doesn't work in 3.13 and it's not super important anyway --- .config/pythonrc | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.config/pythonrc b/.config/pythonrc index c610b88..2cf0d35 100644 --- a/.config/pythonrc +++ b/.config/pythonrc @@ -1,11 +1,3 @@ -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 From e1e3395433e1f52b3231ef1191b80f2d19fe38a7 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Mon, 17 Feb 2025 10:44:31 -0800 Subject: [PATCH 2/2] Change global default branch in git --- .gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitconfig b/.gitconfig index 036adf3..1fb5580 100644 --- a/.gitconfig +++ b/.gitconfig @@ -34,3 +34,5 @@ # On the plus side, lacking it should cause git to fatal so I never miss it. [include] path = ~/.gitconfig.local +[init] + defaultBranch = main