feat(bash): add bash, remove zsh

This commit is contained in:
Barrett Ruth 2026-02-18 11:39:53 -05:00
parent 60f4b6e808
commit b373fbaaab
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
7 changed files with 127 additions and 108 deletions

24
config/bash/inputrc Normal file
View file

@ -0,0 +1,24 @@
set editing-mode vi
set show-mode-in-prompt on
set vi-cmd-mode-string "\1\e[2 q\2"
set vi-ins-mode-string "\1\e[6 q\2"
set completion-ignore-case on
set colored-stats on
set show-all-if-ambiguous on
$if mode=vi
set keymap vi-command
"\C-p": previous-history
"\C-n": next-history
"\C-j": backward-char
"\C-k": forward-char
"\e[3~": delete-char
set keymap vi-insert
"\C-p": previous-history
"\C-n": next-history
"\C-j": backward-char
"\C-k": forward-char
"\e[3~": delete-char
$endif