From fdfb5d5f0cdf38cfaaaf30b97cf7603eab00a390 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Wed, 21 Aug 2024 00:40:14 +0200 Subject: [PATCH] feat: adds `ctrl-x e` from bash to zsh config --- modules/home/zsh.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix index 2c54dc8..9eb9fb5 100644 --- a/modules/home/zsh.nix +++ b/modules/home/zsh.nix @@ -33,6 +33,11 @@ zmodload zsh/zpty # Corrections setopt correct + + # Enable Ctrl-X Ctrl-E + autoload edit-command-line + zle -N edit-command-line + bindkey '^Xe' edit-command-line # History stuff setopt append_history