-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_inputrc
More file actions
33 lines (23 loc) · 798 Bytes
/
dot_inputrc
File metadata and controls
33 lines (23 loc) · 798 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
27
28
29
30
31
32
33
# ~/.inputrc - readline configuration for bash/zsh line editing
# Case-insensitive tab completion
set completion-ignore-case on
# Show all completions on first tab
set show-all-if-ambiguous on
# Append / to directories, * to executables, etc.
set visible-stats on
# Color completions by file type
set colored-stats on
# Don't ring bell on completion
set bell-style none
# Append character to symlinks to indicate type
set mark-symlinked-directories on
# Match hidden files without explicit dot
set match-hidden-files on
# Show common prefix in color
set colored-completion-prefix on
# Use up/down arrows to search history with typed prefix
"\e[A": history-search-backward
"\e[B": history-search-forward
# Ctrl+Left/Right for word movement
"\e[1;5C": forward-word
"\e[1;5D": backward-word