+.inputrc

This commit is contained in:
anon 2023-12-22 20:05:38 +01:00
parent f9fde0d875
commit 686bbb44e4

20
bash/.inputrc Normal file
View File

@ -0,0 +1,20 @@
### LOOKS ###
# do not trash my screen with ^[char]s
set echo-control-characters off
# Color suggestions apropriate for filetype (see $LS_COLORS)
set colored-stats on
# Briefly highlight matching parenthesies
set blink-matching-paren on
# Do not page completion suggestions
set page-completions off
### VIMIFICATION ###
# Vim like bindings for autocompleation from history
"\C-p":history-search-backward
"\C-n":history-search-forward
### COMPLEATION
# case sensitivity off
set completion-ignore-case on
# '-' == '_'
set completion-map-case on