Last active
October 31, 2016 04:28
-
-
Save tessereth/7adcba6c8ed9038defc87678938b8938 to your computer and use it in GitHub Desktop.
Useful irb config
This file contains hidden or 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
# Activate auto-completion. | |
require 'irb/completion' | |
# Use the simple prompt if possible. | |
IRB.conf[:PROMPT_MODE] = :SIMPLE if IRB.conf[:PROMPT_MODE] == :DEFAULT | |
# Setup permanent history. | |
require 'irb/ext/save-history' | |
IRB.conf[:SAVE_HISTORY] = 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment