From 8c43a94a24e2afa568f82df4046a934f49cf82a3 Mon Sep 17 00:00:00 2001 From: Pierre Martin Date: Sat, 27 Oct 2018 10:12:29 +0200 Subject: [PATCH] Bind key to move to next word in zsh-autosuggest --- home.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home.nix b/home.nix index 578d402..f8ee09f 100644 --- a/home.nix +++ b/home.nix @@ -89,6 +89,10 @@ in plugins = [ "git" "git-flow" "docker" "ssh-agent" "last-working-dir" "fasd" ]; }; + initExtra = " + bindkey ' ' forward-word + "; + sessionVariables = { EDITOR = "vim"; ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=7";