diff options
Diffstat (limited to 'readline/inputrc')
-rw-r--r-- | readline/inputrc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/readline/inputrc b/readline/inputrc new file mode 100644 index 0000000..424e7d9 --- /dev/null +++ b/readline/inputrc | |||
@@ -0,0 +1,22 @@ | |||
1 | # inputrc | ||
2 | |||
3 | # Include the system inputrc | ||
4 | $include /etc/inputrc | ||
5 | |||
6 | # Search based on what I've already typed | ||
7 | "\C-p":history-search-backward | ||
8 | "\C-n":history-search-forward | ||
9 | |||
10 | # Show completions using LS_COLORS | ||
11 | set colored-stats On | ||
12 | # Ignore case in completions | ||
13 | set completion-ignore-case On | ||
14 | # Show ... if common prefix is longer than 3 characters | ||
15 | set completion-prefix-display-length 3 | ||
16 | # Show symlinked directories with a slash | ||
17 | set mark-symlinked-directories On | ||
18 | # Show completions immediately | ||
19 | set show-all-if-ambiguous On | ||
20 | set show-all-if-unmodified On | ||
21 | # Show types (like ls -F) | ||
22 | set visible-stats On | ||