diff options
author | Case Duckworth | 2024-05-30 12:47:11 -0500 |
---|---|---|
committer | Case Duckworth | 2024-05-30 12:47:11 -0500 |
commit | 22bc1e1879da0d99e5e1d79b10742b8cc9fd0521 (patch) | |
tree | cd813c6d8bfeebe83901b2d749ce97f1231dd547 /inputrc | |
download | dots-22bc1e1879da0d99e5e1d79b10742b8cc9fd0521.tar.gz dots-22bc1e1879da0d99e5e1d79b10742b8cc9fd0521.zip |
Initial commit
Diffstat (limited to 'inputrc')
-rw-r--r-- | inputrc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/inputrc b/inputrc new file mode 100644 index 0000000..9c1fc09 --- /dev/null +++ b/inputrc | |||
@@ -0,0 +1,22 @@ | |||
1 | # ~/.inputrc -*- conf -*- | ||
2 | |||
3 | # Include the system inputrc | ||
4 | $include /etc/inputrc | ||
5 | |||
6 | # Emacs shell-like history navigation | ||
7 | "\ep": history-search-backward | ||
8 | "\en": history-search-forward | ||
9 | |||
10 | # Global settings | ||
11 | |||
12 | set mark-symlinked-directories on | ||
13 | set visible-stats on | ||
14 | set blink-matching-paren on | ||
15 | |||
16 | set completion-ignore-case on | ||
17 | set completion-prefix-display-length 3 | ||
18 | set show-all-if-ambiguous on | ||
19 | set show-all-if-unmodified on | ||
20 | |||
21 | set enable-bracketed-paste on | ||
22 | |||