feat(zsh): add `^X^E` mappinng to edit command line in editor

Signed-off-by: Seongmin Lee <boltlessengineer@proton.me>

Changed files
+5
zsh
+5
zsh/.zshrc
··· 16 16 17 17 ## Fzf shell integration 18 18 source <(fzf --zsh) 19 + 20 + autoload edit-command-line 21 + zle -N edit-command-line 22 + bindkey '^Xe' edit-command-line 23 + bindkey '^X^E' edit-command-line