なんじゃくにっき

プログラミングの話題中心。

IRBの色を変えたい

なーんかRubyのREPLの色が見づらくて変えられないかなーと思っていたら変えられるとのこと。

reline/doc/reline/face.md at master · ruby/reline · GitHub

$HOME/.irbrc に

if defined? Reline::Face
  Reline::Face.config(:completion_dialog) do |conf|
    conf.define :default, foreground: :white, background: :blue
    conf.define :enhanced, foreground: :white, background: :magenta
    conf.define :scrollbar, foreground: :white, background: :blue
  end
end

relineがない環境でirbが落ちないようにinstallされているか調べています