mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
372 B
20 lines
372 B
5 years ago
|
$include /etc/inputrc
|
||
|
set editing-mode vi
|
||
|
$if mode=vi
|
||
|
|
||
|
set show-mode-in-prompt on
|
||
|
set vi-ins-mode-string \1\e[6 q\2
|
||
|
set vi-cmd-mode-string \1\e[2 q\2
|
||
|
|
||
|
set keymap vi-command
|
||
|
# these are for vi-command mode
|
||
|
Control-l: clear-screen
|
||
|
Control-a: beginning-of-line
|
||
|
|
||
|
set keymap vi-insert
|
||
|
# these are for vi-insert mode
|
||
|
Control-l: clear-screen
|
||
|
Control-a: beginning-of-line
|
||
|
|
||
|
$endif
|