about summary refs log tree commit diff stats
path: root/readline
diff options
context:
space:
mode:
authorCase Duckworth2021-08-23 23:07:31 -0500
committerCase Duckworth2021-08-23 23:07:31 -0500
commite292eb508413b9174684a8e75c93474a7f5351ee (patch)
treee7e59b21c817bfd1c438ef3cfc68b9021e786d7c /readline
downloadetc-e292eb508413b9174684a8e75c93474a7f5351ee.tar.gz
etc-e292eb508413b9174684a8e75c93474a7f5351ee.zip
Initial
Diffstat (limited to 'readline')
-rw-r--r--readline/inputrc22
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
11set colored-stats On
12# Ignore case in completions
13set completion-ignore-case On
14# Show ... if common prefix is longer than 3 characters
15set completion-prefix-display-length 3
16# Show symlinked directories with a slash
17set mark-symlinked-directories On
18# Show completions immediately
19set show-all-if-ambiguous On
20set show-all-if-unmodified On
21# Show types (like ls -F)
22set visible-stats On