Compare commits

..

No commits in common. "341fdb8e2abff766248671da164d405db7ccf375" and "7183911d6494725992f660061ab008fb94110130" have entirely different histories.

2 changed files with 0 additions and 31 deletions

View File

@ -1,12 +0,0 @@
#!/usr/bin/env nix-shell
#! nix-shell -p stow
stow bash
stow sh
stow .inputrc # Readline configuration
stow vim
stow .vimrc
stow ruby
stow python

View File

@ -1,19 +0,0 @@
# Runtime Configuration for IRB (Interactive Ruby)
require 'irb/completion'
IRB.conf[:AUTO_INDENT] = true
# History configuration
IRB.conf[:SAVE_HISTORY] = 1000
IRB.conf[:HISTORY_FILE] = "#{ENV["HOME"]}/.history/ruby"
# Custom Prompt
IRB.conf[:PROMPT][:MY_PROMPT] = {
:AUTO_INDENT => true,
:PROMPT_I => "\033[1;31m>>\033[0m ",
:PROMPT_S => "\033[1;31m\">\033[0m ",
:PROMPT_C => "\033[1;31m?>\033[0m ",
:RETURN => "\033[1;35m=>\033[0m %s\n"
}
IRB.conf[:PROMPT_MODE] = :MY_PROMPT