diff options
author | marlonivo <email@marlonivo.xyz> | 2025-04-14 09:16:38 +0000 |
---|---|---|
committer | marlonivo <email@marlonivo.xyz> | 2025-04-14 09:16:38 +0000 |
commit | 0d1a84f59d8cdd62c97410f96f8a13c98c51453a (patch) | |
tree | 01fee1d2003ea27f96a3e52b077827605ed14fab /.config/shell/inputrc |
Diffstat (limited to '.config/shell/inputrc')
-rw-r--r-- | .config/shell/inputrc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/shell/inputrc b/.config/shell/inputrc new file mode 100644 index 0000000..f9b94dd --- /dev/null +++ b/.config/shell/inputrc @@ -0,0 +1,19 @@ +$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 |