From 1ef67a2808dbf69de3d4e9f587e807934c45415c Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Fri, 22 May 2020 18:19:36 +0200 Subject: [PATCH] style(zsh): fix config order --- home/shell/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/shell/default.nix b/home/shell/default.nix index 6c44f5f..64edbbc 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -28,6 +28,7 @@ in enableAutosuggestions = true; autocd = true; defaultKeymap = "viins"; + history.extended = true; plugins = with pkgs; [ { name = "first-tab-completion"; @@ -68,7 +69,6 @@ in bindkey -M vicmd 'k' history-substring-search-up bindkey -M vicmd 'j' history-substring-search-down ''; - history.extended = true; inherit shellAliases; };