summaryrefslogtreecommitdiff
path: root/python/.pythonrc
diff options
context:
space:
mode:
authorbh <qn+git@epicurus.dev>2026-04-01 20:28:35 +0800
committerbh <qn+git@epicurus.dev>2026-04-01 20:28:35 +0800
commit71e75e351867060d8cf00e676b70341022f0fe17 (patch)
tree7b263066ba3a9859bf5f083d27e51612551ee950 /python/.pythonrc
parent51db7939e8c6d4f2cf894963b874d649ec4c2ace (diff)
python: add python configuration
Diffstat (limited to 'python/.pythonrc')
-rw-r--r--python/.pythonrc9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/.pythonrc b/python/.pythonrc
new file mode 100644
index 0000000..6087e1f
--- /dev/null
+++ b/python/.pythonrc
@@ -0,0 +1,9 @@
+import sys
+
+# 24-bit ANSI colours
+gold = "\001\033[38;2;255;197;0m\002" # #FFC500
+blue = "\001\033[38;2;47;93;134m\002" # #2F5D86
+reset = "\001\033[0m\002"
+
+sys.ps1 = f"{gold} >> {reset}"
+sys.ps2 = f"{blue}... {reset}"