The bare $HOME repo is gone. This is now the rice: install.sh, rice-* scripts in bin/, configs in home/ linked into $HOME, theme templates, st and the particle wallpaper. Clone to ~/rice and run install.sh.
24 lines
662 B
Text
24 lines
662 B
Text
# Sakura Line - readline.
|
|
$include /etc/inputrc
|
|
|
|
set completion-ignore-case on
|
|
set completion-prefix-display-length 2
|
|
set show-all-if-ambiguous on
|
|
set show-all-if-unmodified on
|
|
set menu-complete-display-prefix on
|
|
set mark-symlinked-directories on
|
|
set match-hidden-files off
|
|
set page-completions off
|
|
set completion-query-items 200
|
|
set visible-stats on
|
|
set colored-stats on
|
|
set colored-completion-prefix on
|
|
set skip-completed-text on
|
|
|
|
# Up and Down search the history for what is already typed.
|
|
"\e[A": history-search-backward
|
|
"\e[B": history-search-forward
|
|
|
|
# Tab cycles through completions; Shift+Tab goes back.
|
|
TAB: menu-complete
|
|
"\e[Z": menu-complete-backward
|