Last active
September 10, 2016 20:02
-
-
Save DArcMattr/267dae1163133fdb120c898c104c91f3 to your computer and use it in GitHub Desktop.
Config for Readline feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Two escapes clears command line | |
"\e\e": "\C-a\C-k" | |
"\t": menu-complete | |
set keymap vi | |
set editing-mode vi | |
$if mode=vi | |
set keymap vi-command | |
set keymap vi-insert | |
"\C-p": history-search-backward | |
"\C-l": clear-screen | |
$endif | |
set bell-style off | |
set colored-stats on | |
set completion-ignore-case On | |
set convert-meta off | |
set expand-tilde on | |
set input-meta on | |
set mark-directories on | |
set meta-flag on | |
set output-meta on | |
set show-all-if-ambiguous on | |
set visible-stats on | |
$include /etc/inputrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment