Mercurial > ec-dotfiles
comparison rc/irbrc @ 684:6010e722b5da
[irbrc] Disable syntax highlighting as it slows down things
Reference: https://github.com/ruby/irb/issues/292
author | nanaya <me@nanaya.pro> |
---|---|
date | Wed, 14 Sep 2022 19:06:13 +0900 |
parents | b95069a1f664 |
children | 6faa6995937f |
comparison
equal
deleted
inserted
replaced
683:71254a6ddb4c | 684:6010e722b5da |
---|---|
1 require 'irb/ext/save-history' | 1 require 'irb/ext/save-history' |
2 IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb_history" | |
2 IRB.conf[:SAVE_HISTORY] = 20000 | 3 IRB.conf[:SAVE_HISTORY] = 20000 |
3 IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb_history" | |
4 IRB.conf[:USE_AUTOCOMPLETE] = false | 4 IRB.conf[:USE_AUTOCOMPLETE] = false |
5 IRB.conf[:USE_MULTILINE] = false |