mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 11:06:41 +00:00
15 lines
270 B
Bash
15 lines
270 B
Bash
#
|
|
# Cursor Setup
|
|
#
|
|
|
|
if command-exists cursor-agent; then
|
|
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
|