-
-
Save cczona/4653256 to your computer and use it in GitHub Desktop.
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
# Custom prompt. Based on <https://gist.github.com/4652812> by Zachary Scott | |
IRB.conf[:PROMPT][:PERSONAL] = IRB.conf[:PROMPT][:RVM].merge( | |
:PROMPT_I => "\n#{RUBY_VERSION} >> ", | |
:PROMPT_S => "%l >> ", | |
:PROMPT_C => "? >> ", | |
:RETURN => "RETURNS> %s\n\n" | |
) | |
IRB.conf[:PROMPT_MODE] = :PERSONAL | |
IRB.conf[:PROMPT][:AUTO_INDENT]=true | |
IRB.conf[:SAVE_HISTORY] = 100 | |
IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb-save-history" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment