Compare commits

..

2 commits

Author SHA1 Message Date
f6500b025a opencode: superpowers plugin 2026-04-15 15:24:25 -03:00
150433be29 zsh: hisory serach prefix 2026-04-15 15:24:25 -03:00
2 changed files with 4 additions and 0 deletions

View file

@ -27,6 +27,7 @@
settings = { settings = {
theme = "system"; theme = "system";
autoupdate = false; autoupdate = false;
plugin = [ "superpowers@git+https://github.com/obra/superpowers.git" ];
}; };
}; };
}; };

View file

@ -32,6 +32,9 @@
# Expand !! and !$ on space (Fish-style) # Expand !! and !$ on space (Fish-style)
bindkey ' ' magic-space bindkey ' ' magic-space
setopt HIST_VERIFY 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 # Fish-style Ctrl+Backspace: delete one path segment at a time
function backward-kill-path-component() { function backward-kill-path-component() {
if [[ "$LBUFFER" == */ ]]; then if [[ "$LBUFFER" == */ ]]; then