Last active
February 9, 2024 13:06
-
-
Save evgenii-malov/d673e7030e544fcfa7b54a56c53fb4c9 to your computer and use it in GitHub Desktop.
prettify ghci
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for haskell repl: | |
:set prompt "\ESC[34mλ> \ESC[m" | |
for python repl: | |
sys.ps1 = '\x01\x1b[1;49;31m\x02λ>\x01\x1b[0m\x02' | |
sys.ps2 = '\x01\x1b[1;49;31m\x02λ>\x01\x1b[0m\x02' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment