blob: 39a869f95b34905cda2fe6d581ef9dae25c43583 (
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
25
26
27
28
29
|
# vim: filetype=readline
$include /etc/inputrc
set editing-mode vi
set keyseq-timeout 250
set colored-stats
set colored-completion-prefix
set completion-ignore-case
set completion-map-case
set mark-symlinked-directories
set show-all-if-ambiguous
set blink-matching-paren
set skip-completed-text
set revert-all-at-newline
"jj": "\e"
Control-l: clear-screen
Control-w: clear-screen line
Control-a: beginning-of-line
Control-e: end-of-line
Control-k: history-search-backward
Control-j: history-search-forward
Control-n: menu-complete
Control-b: menu-complete-backward
|