Created
December 14, 2022 13:23
-
-
Save jasonmorganson/e869078cfb0bc01849086ac157e044bc to your computer and use it in GitHub Desktop.
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
# This file controls the behaviour of line input editing for | |
# programs that use the GNU Readline library. Existing | |
# programs include FTP, Bash, and GDB. | |
# Manual https://www.gnu.org/software/bash/manual/html_node/Readline-Init-File.html | |
# Copied from "A ~/.inputrc for Humans" (https://www.topbug.net/blog/2017/07/31/inputrc-for-humans) | |
# Include any system-wide bindings and variable assignments | |
$include /etc/inputrc | |
set editing-mode vi | |
"\C-p":history-search-backward | |
"\C-n":history-search-forward | |
set colored-stats On | |
set completion-ignore-case On | |
set completion-prefix-display-length 3 | |
set mark-symlinked-directories On | |
set show-all-if-ambiguous On | |
set show-all-if-unmodified On | |
set visible-stats On |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment