about summary refs log tree commit diff stats
path: root/readline/inputrc
blob: 20f3251ec2def53dba125801c41497c63cdf6150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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 Off
# 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
# Better pasting
set enable-bracketed-paste on
# Blink parens
set blink-matching-paren on