配置文件位置:
~/.zshrc
启动配置:
source ~/.zshrc
原来的是:~/.bashrc
https://ohmyz.sh/
重新绑定按键:
# key bindingsbindkey "\e[1~" beginning-of-linebindkey "\e[4~" end-of-linebindkey "\e[5~" beginning-of-historybindkey "\e[6~" end-of-history# for rxvtbindkey "\e[8~" end-of-linebindkey "\e[7~" beginning-of-line# for non RH/Debian xterm, can't hurt for RH/DEbian xtermbindkey "\eOH" beginning-of-linebindkey "\eOF" end-of-line# for freebsd consolebindkey "\e[H" beginning-of-linebindkey "\e[F" end-of-line# completion in the middle of a linebindkey '^i' expand-or-complete-prefix# Fix numeric keypad# 0 . Enterbindkey -s "^[Op" "0"bindkey -s "^[On" "."bindkey -s "^[OM" "^M"# 1 2 3bindkey -s "^[Oq" "1"bindkey -s "^[Or" "2"bindkey -s "^[Os" "3"# 4 5 6bindkey -s "^[Ot" "4"bindkey -s "^[Ou" "5"bindkey -s "^[Ov" "6"# 7 8 9bindkey -s "^[Ow" "7"bindkey -s "^[Ox" "8"bindkey -s "^[Oy" "9"# + - * /bindkey -s "^[Ol" "+"bindkey -s "^[Om" "-"bindkey -s "^[Oj" "*"bindkey -s "^[Oo" "/"
