-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.inputrc
37 lines (30 loc) · 832 Bytes
/
.inputrc
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
27
28
29
30
31
32
33
34
35
36
37
$include /etc/inputrc
# Don't ring bell on completion
set bell-style none
# Filename completion/expansion
set completion-ignore-case on
set show-all-if-ambiguous on
set show-all-if-unmodified on
"\M-s": menu-complete
# Append "/" to all dirnames
set mark-directories on
# Mark symlinked directories
set mark-symlinked-directories On
# Do not match hidden files
set match-hidden-files off
# Color files by types
set colored-stats On
# Append char to indicate type
set visible-stats On
# Color the common prefix
set colored-completion-prefix On
# Color the common prefix in menu-complete
set menu-complete-display-prefix On
"\e[A": history-search-backward
"\e[B": history-search-forward
$if Bash
# 'Magic Space'
# Insert a space character then performs
# a history expansion in the line
Space: magic-space
$endif