From 4756212c329e6640092a2517b99e5ed04ce91af8 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 30 Dec 2025 13:52:47 +0000 Subject: [PATCH] feat(zsh/cursor): set cursor as default editor and update alias for cursor command --- zsh/cursor.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/cursor.zsh b/zsh/cursor.zsh index f59bbc0..f75ff2b 100644 --- a/zsh/cursor.zsh +++ b/zsh/cursor.zsh @@ -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