Skip to content

Instantly share code, notes, and snippets.

@krnd
Created July 4, 2021 18:17
Show Gist options
  • Save krnd/fc35c84654a4788c63e8a8cef2b2ecb0 to your computer and use it in GitHub Desktop.
Save krnd/fc35c84654a4788c63e8a8cef2b2ecb0 to your computer and use it in GitHub Desktop.
bash-inputrc
#!/bin/bash
# .inputrc
#
# AUTHOR
# krnd
#
# VERSION
# 1.0
#
# SEE ALSO
# https://tiswww.case.edu/php/chet/readline/readline.html
# https://gist.github.com/krnd
#
# When listing completions, Readline displays the common prefix of the set of
# possible completions using a different color.
set colored-completion-prefix on
# Readline displays possible completions using different colors to indicate
# their file type.
set colored-stats on
# Readline performs filename matching and completion in a case-insensitive
# fashion.
set completion-ignore-case on
# Readline treats hyphens (`-') and underscores (`_') as equivalent when
# performing case-insensitive filename matching and completion.
set completion-map-case on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment