feat: adds ctrl-x e from bash to zsh config

This commit is contained in:
Ahwx 2024-08-21 00:40:14 +02:00
parent f0e79346eb
commit fdfb5d5f0c

View file

@ -33,6 +33,11 @@
zmodload zsh/zpty zmodload zsh/zpty
# Corrections # Corrections
setopt correct setopt correct
# Enable Ctrl-X Ctrl-E
autoload edit-command-line
zle -N edit-command-line
bindkey '^Xe' edit-command-line
# History stuff # History stuff
setopt append_history setopt append_history