Skip to content

Commit

Permalink
fix: zsh history substring search
Browse files Browse the repository at this point in the history
  • Loading branch information
Swarsel committed Dec 18, 2024
1 parent c47ad45 commit 6fbc165
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion SwarselSystems.org
Original file line number Diff line number Diff line change
Expand Up @@ -8664,7 +8664,11 @@ Here we set some aliases (some of them should be shellApplications instead) as w
save = 10000;
size = 10000;
};
historySubstringSearch.enable = true;
historySubstringSearch = {
enable = true;
searchDownKey = "^[OB";
searchUpKey = "^[OA";
};
plugins = [
{
name = "fzf-tab";
Expand Down
6 changes: 5 additions & 1 deletion profiles/common/home/zsh.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@
save = 10000;
size = 10000;
};
historySubstringSearch.enable = true;
historySubstringSearch = {
enable = true;
searchDownKey = "^[OB";
searchUpKey = "^[OA";
};
plugins = [
{
name = "fzf-tab";
Expand Down

0 comments on commit 6fbc165

Please sign in to comment.