feat(zsh/cursor): set cursor as default editor and update alias for cursor command

This commit is contained in:
2025-12-30 13:52:47 +00:00
parent de6bb30eae
commit 4756212c32

View File

@@ -3,12 +3,12 @@
#
if command-exists cursor-agent; then
alias cu="cursor-agent"
setup-completions cursor-agent "$(command-path cursor-agent)" \
cursor-agent shell-integration zsh
fi
if command-exists cursor; then
export EDITOR="cursor -w"
alias cu="cursor"
alias e="cursor -w"
fi