From 2be736cc24aeabdb66ff3bd6c870970becfc0af6 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Sat, 14 Nov 2020 11:19:04 +0100 Subject: [PATCH] feat(zsh): enable extendedglob and kshglob --- home/shell/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/shell/default.nix b/home/shell/default.nix index 3d0e90d..e6999c5 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -62,6 +62,9 @@ in { bindkey "$terminfo[kcud1]" history-substring-search-down bindkey -M vicmd 'k' history-substring-search-up bindkey -M vicmd 'j' history-substring-search-down + + setopt extendedglob + setopt kshglob ''; inherit shellAliases; };