12 lines
280 B
Plaintext
12 lines
280 B
Plaintext
require 'irb/completion'
|
|
|
|
# configure irb
|
|
IRB.conf[:AUTO_INDENT]=true
|
|
|
|
# irb history
|
|
IRB.conf[:EVAL_HISTORY] = 1000
|
|
IRB.conf[:SAVE_HISTORY] = 1000
|
|
IRB.conf[:HISTORY_FILE] = File.expand_path("~/.irb_history")
|
|
|
|
load "#{ENV['HOME']}/.rubyrc" if File.exist?("#{ENV['HOME']}/.rubyrc")
|