This commit is contained in:
2026-03-30 17:38:45 +09:00
commit 29e2149d66
20 changed files with 677 additions and 0 deletions

3
.zsh/plugin/cdup.zsh Normal file
View File

@@ -0,0 +1,3 @@
cdup() { [[ -z "$BUFFER" ]] && { cd ..; zle reset-prompt } || zle self-insert 'k' }
zle -N cdup
bindkey '^k' cdup