Skip to content

Commit

Permalink
Drop stored line count to 10k from 100k, and switch back to sudo -s.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpr5 committed Nov 5, 2010
1 parent 4b94942 commit 9f0490e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .irbrc
Expand Up @@ -2,7 +2,7 @@ require 'irb/completion'
require 'irb/ext/save-history' require 'irb/ext/save-history'
ARGV.concat [ "--readline", "--prompt-mode", "simple" ] ARGV.concat [ "--readline", "--prompt-mode", "simple" ]
IRB.conf[:VERBOSE] = true IRB.conf[:VERBOSE] = true
IRB.conf[:SAVE_HISTORY] = 100000 IRB.conf[:SAVE_HISTORY] = 10000
IRB.conf[:USE_READLINE] = true IRB.conf[:USE_READLINE] = true
IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.ruby_history" IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.ruby_history"


Expand Down
2 changes: 1 addition & 1 deletion .profile
Expand Up @@ -59,7 +59,7 @@ export PATH=/opt/local/lib/mysql5/bin:$PATH
## Aliases ## Aliases
## ##


alias su='sudo -i' alias su='sudo -s'
alias df='df -klH ' alias df='df -klH '
alias rs='rsync -avuxe ssh ' alias rs='rsync -avuxe ssh '
alias grep='grep --line-buffered --color=always' alias grep='grep --line-buffered --color=always'
Expand Down
2 changes: 1 addition & 1 deletion .rdebugrc
@@ -1,5 +1,5 @@
set autoeval set autoeval
set autolist set autolist
set history save set history save
set history size 100000 set history size 10000
set history filename /Users/jpr5/.ruby_history set history filename /Users/jpr5/.ruby_history

0 comments on commit 9f0490e

Please sign in to comment.