-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.inputrc
More file actions
26 lines (19 loc) · 745 Bytes
/
Copy path.inputrc
File metadata and controls
26 lines (19 loc) · 745 Bytes
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
# GNU Readline configuration. ACTIVELY USED.
# Applies to bash, psql on Linux, and any program linking against GNU Readline.
# Note: macOS tools typically use libedit - see .editrc for that.
set editing-mode vi
set keymap vi
set history-size 10000
# Just show instead of ringing the bell.
set show-all-if-ambiguous on
# Display possible completions using different colors.
set colored-stats on
# Maximum characters from a common prefix to display for completions.
set completion-prefix-display-length 3
# Append slash to symlinked directories.
set mark-symlinked-directories on
# Include stat information in autocompletion.
set visible-stats on
# Cannot figure out how to enable these:
# alias-expand-line
# history-and-alias-expand-line