summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorbh <qn+git@excalibur.computer>2026-04-01 20:28:35 +0800
committerbh <qn+git@excalibur.computer>2026-04-01 20:28:35 +0800
commitd238f267534706042b833a45155da05f1b0ad31a (patch)
tree7b263066ba3a9859bf5f083d27e51612551ee950 /python
parent1e2823000e8b2f0168df020a03826de59c543db1 (diff)
python: add python configuration
Diffstat (limited to 'python')
-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}"