Skip to content

Instantly share code, notes, and snippets.

@cameronbourke
Last active December 14, 2020 21:02
Show Gist options
  • Save cameronbourke/b8d3a84e710b402c281ce1580f03b5b4 to your computer and use it in GitHub Desktop.
Save cameronbourke/b8d3a84e710b402c281ce1580f03b5b4 to your computer and use it in GitHub Desktop.
Simple Input RC
# Controls what happens when Readline wants to ring the terminal bell.
set bell-style none
# When pressing up or down arrows,
# show only history entries that match what was already typed.
"\ep":history-search-backward
"\en":history-search-forward
"\C-x\C-r": re-read-init-file
# Turn on case insensitivity for tab-completion.
# Ex.: type "doc<tab>" to search for "Documents"
set completion-ignore-case on
# Readline will try and match files whose names
# begin with a ‘.’ (hidden files) when performing filename completion.
set match-hidden-files on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment