I just recently switched from bash to zsh, however I miss my Alt+LeftArrowKey and Alt+RightArrowKey to go back and forth a word at a
To make it work for me I used this answer, however I had to swap the codes (left <-> right)
⌥+← Send Hex Codes: 0x1b 0x66 ⌥+→ Send Hex Codes: 0x1b 0x62
and add the following to my ~/.zshrc
~/.zshrc
bindkey -e bindkey "^[b" forward-word bindkey '^[f' backward-word