Skip to content

Instantly share code, notes, and snippets.

@sevenc-nanashi
Created August 24, 2021 08:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sevenc-nanashi/9d0ce8c33d3e3c11a7ec1229026c2e84 to your computer and use it in GitHub Desktop.
Save sevenc-nanashi/9d0ce8c33d3e3c11a7ec1229026c2e84 to your computer and use it in GitHub Desktop.
Colored irb
require 'irb/ext/save-history'
require 'irb/completion'
IRB.conf[:SAVE_HISTORY] = 200
IRB.conf[:PROMPT][:COLORED] = {
PROMPT_I: "\033[4;91m %N \\\033[31m %m \\\033[93m %03n:%i \\\033[96m \\\033[24m\033[m ",
PROMPT_S: "\033[4;91m %N \\\033[31m %m \\\033[93m %03n:%i \\\033[96m%l\\\033[24m\033[m ",
PROMPT_C: "\033[4;91m %N \\\033[31m %m \\\033[93m %03n:%i \\\033[96m*\\\033[24m\033[m ",
RETURN: "%s\n"
}
IRB.conf[:PROMPT_MODE] = :COLORED
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment