about summary refs log tree commit diff stats
path: root/readline/inputrc
blob: 424e7d91f57b830f851c12afb3d1866911c1c596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# inputrc

# Include the system inputrc
$include /etc/inputrc

# Search based on what I've already typed
"\C-p":history-search-backward
"\C-n":history-search-forward

# Show completions using LS_COLORS
set colored-stats On
# Ignore case in completions
set completion-ignore-case On
# Show ... if common prefix is longer than 3 characters
set completion-prefix-display-length 3
# Show symlinked directories with a slash
set mark-symlinked-directories On
# Show completions immediately
set show-all-if-ambiguous On
set show-all-if-unmodified On
# Show types (like ls -F)
set visible-stats On