Skip to content

Instantly share code, notes, and snippets.

@sometimesfood
Created January 22, 2011 19:56
Show Gist options
  • Save sometimesfood/791407 to your computer and use it in GitHub Desktop.
Save sometimesfood/791407 to your computer and use it in GitHub Desktop.
my ~/.irbrc
require 'irb/completion'
require 'irb/ext/save-history'
require 'pp'
# Load the readline module.
IRB.conf[:USE_READLINE] = true
# Remove the annoying irb(main):001:0 and replace with >>
IRB.conf[:PROMPT_MODE] = :SIMPLE
# Automatic Indentation
IRB.conf[:AUTO_INDENT]=true
# Save History between irb sessions
IRB.conf[:SAVE_HISTORY] = 100
begin
require 'wirble'
Wirble.init
Wirble.colorize
rescue LoadError => err
warn "Couldn't load Wirble: #{err}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment