14 lines
394 B
Text
14 lines
394 B
Text
|
|
# Enable vi-style line editing for all readline apps
|
||
|
|
set editing-mode vi
|
||
|
|
|
||
|
|
# Indicate the current mode via the cursor shape
|
||
|
|
set show-mode-in-prompt on
|
||
|
|
set vi-cmd-mode-string "\1\e[2 q\2" # steady block
|
||
|
|
set vi-ins-mode-string "\1\e[5 q\2" # blinking beam
|
||
|
|
|
||
|
|
# Ctrl-L clears the screen in command mode only
|
||
|
|
# => Bind in insert mode as well
|
||
|
|
set keymap vi-insert
|
||
|
|
"\C-l": clear-screen
|
||
|
|
|
||
|
|
set keymap vi
|