forked from sontek/homies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_inputrc
35 lines (29 loc) · 768 Bytes
/
_inputrc
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
30
31
32
33
34
35
set editing-mode vi
# Adds punctuation as word delimiters
set bind-tty-special-chars off
# Completion Options
set page-completions on
set completion-ignore-case on
set completion-query-items 200
set show-all-if-ambiguous on
set show-all-if-unmodified on
set visible-stats on
# Useful stuff for UTF-8
set meta-flag on
set input-meta on
set output-meta on
set convert-meta off
$if mode=vi
set keymap vi-command
"gg": beginning-of-history
"G": end-of-history
set keymap vi-insert
"\C-l": clear-screen
"\C-w": backward-kill-word
# auto-complete from the history
"\C-p": history-search-backward
"\C-n": history-search-forward
$endif
# IPython needs this to appear at the bottom of the
# file for clear-screen to work
set keymap vi