From 270e4c461bbac61e8e6c12d857fbacb8c910b03d Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 6 Jul 2024 18:38:39 -0400 Subject: [PATCH] Fix macos word delete --- configs/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/.zshrc b/configs/.zshrc index 6345255..b27d551 100644 --- a/configs/.zshrc +++ b/configs/.zshrc @@ -14,6 +14,9 @@ # Firstly, if this machine has a copy of ewconfig, keep track of its location [[ -d "$HOME/.config/ewconfig" ]] && export EWCONFIG_ROOT="$HOME/.config/ewconfig" +# Put ZSH into "emacs mode" to fix macos keybinds +[[ -z "$ZSH_VERSION" ]] && bindkey -e + # Configure default binary and library paths export GOPATH="$HOME/go" export PATH="$EWCONFIG_ROOT/scripts:$HOME/bin:$HOME/.local/bin:$PATH"