blob: e99f69cc75ed7de2aa6537c43ceaf957680d7b5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# ~/.inputrc -*- conf -*-
# Include the system inputrc
$include /etc/inputrc
# Emacs shell-like history navigation
"\C-p": history-search-backward
"\ep": history-search-backward
"\C-n": history-search-forward
"\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
|