-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.inputrc
31 lines (22 loc) · 861 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
# Include global configuration
$include /etc/inputrc
# Color the common prefix
set colored-completion-prefix on
# Complete files in a case-insensitive fashion
set completion-ignore-case on
# Mark symlinked directories
set mark-symlinked-directories on
# Color the common prefix in menu-complete
set menu-complete-display-prefix on
# Show completion list when the completing word has more than one possible completion
set show-all-if-ambiguous on
# Show completion list if no partial completions are available
set show-all-if-unmodified on
# Append char to indicate type
set visible-stats on
# Disable bell sound
set bell-style none
# Bracketed paste pastes control characters as-is without intepreting them
# Useful when pasting commands that contain a new-line character at the end as they won't be
# executed upon paste
set enable-bracketed-paste on