From fb42e8dfce475ed5caf808de37c0879330223874 Mon Sep 17 00:00:00 2001 From: David Morgan Date: Tue, 17 Jan 2023 13:19:44 +0000 Subject: [PATCH] Set ZSH_AUTOSUGGEST_STRATEGY --- nix-conf/home/includes/zsh.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix-conf/home/includes/zsh.nix b/nix-conf/home/includes/zsh.nix index fc39509..cc79fb9 100644 --- a/nix-conf/home/includes/zsh.nix +++ b/nix-conf/home/includes/zsh.nix @@ -87,7 +87,9 @@ in localVariables = { PER_DIRECTORY_HISTORY_TOGGLE = "^\\\\"; # ^\\ is ^# - HISTORY_START_WITH_GLOBAL=true; + HISTORY_START_WITH_GLOBAL = true; + + ZSH_AUTOSUGGEST_STRATEGY = ["history" "completion"]; NVM_AUTO_USE = true; NVM_LAZY_LOAD = true;