From f1706de79855f716122ebd79f9d3515b4b5f4c45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sun, 29 Dec 2024 14:54:00 +0100 Subject: [PATCH] feat(zsh): control backspace deletes word --- home.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home.nix b/home.nix index ba1e855..634ddaa 100644 --- a/home.nix +++ b/home.nix @@ -149,6 +149,9 @@ in { initExtra = '' # enable jj completion source <(jj util completion zsh) + + # bind ctrl-backspace to delete word + bindkey '^H' backward-kill-word ''; };