Prompt changing
The functions
OhMyREPL.input_prompt!(str::String, color::Symbol)
OhMyREPL.output_prompt!(str::String, color::Symbol)
can be used to change the way that the input and output prompts are displayed.
As an example, after running:
OhMyREPL.input_prompt!(">", :magenta)
OhMyREPL.output_prompt!(">", :red)
The different possible colors can be found by typing Base.text_colors
in the Julia REPL's help mode.
Hint
You can use something like OhMyREPL.input_prompt!(string(VERSION) * ">", :green)
to show which version of Julia you are currently running.