From 150433be29343fda443781372e4e4c65fe6471f7 Mon Sep 17 00:00:00 2001 From: William Date: Wed, 15 Apr 2026 15:21:25 -0300 Subject: [PATCH 1/2] zsh: hisory serach prefix --- aspects/base/zsh.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aspects/base/zsh.nix b/aspects/base/zsh.nix index 18d7ff6..3f28609 100644 --- a/aspects/base/zsh.nix +++ b/aspects/base/zsh.nix @@ -32,6 +32,9 @@ # Expand !! and !$ on space (Fish-style) bindkey ' ' magic-space setopt HIST_VERIFY + # History prefix search with up/down arrows + bindkey "^[[A" history-search-backward + bindkey "^[[B" history-search-forward # Fish-style Ctrl+Backspace: delete one path segment at a time function backward-kill-path-component() { if [[ "$LBUFFER" == */ ]]; then From f6500b025a4421aed9e92b6c6641f4304b233461 Mon Sep 17 00:00:00 2001 From: William Date: Wed, 15 Apr 2026 15:23:52 -0300 Subject: [PATCH 2/2] opencode: superpowers plugin --- aspects/ai.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/aspects/ai.nix b/aspects/ai.nix index 30c7342..1192009 100644 --- a/aspects/ai.nix +++ b/aspects/ai.nix @@ -27,6 +27,7 @@ settings = { theme = "system"; autoupdate = false; + plugin = [ "superpowers@git+https://github.com/obra/superpowers.git" ]; }; }; };