blob: 9c1fc09e9096233fa6f8aeddcc17bf095d104cb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# ~/.inputrc -*- conf -*-
# Include the system inputrc
$include /etc/inputrc
# Emacs shell-like history navigation
"\ep": history-search-backward
"\en": history-search-forward
# Global settings
set mark-symlinked-directories on
set visible-stats on
set blink-matching-paren on
set completion-ignore-case on
set completion-prefix-display-length 3
set show-all-if-ambiguous on
set show-all-if-unmodified on
set enable-bracketed-paste on
|