From 055e323beb019eba39c583dc227a3f6547bdba43 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 1 Feb 2026 21:48:47 +0200 Subject: add cursor commands --- dotfiles/Rexfile | 6 ++++++ dotfiles/cursor/commands/cap.md | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 dotfiles/cursor/commands/cap.md diff --git a/dotfiles/Rexfile b/dotfiles/Rexfile index 839309e..4c1f5b0 100644 --- a/dotfiles/Rexfile +++ b/dotfiles/Rexfile @@ -145,6 +145,12 @@ task 'home_helix', sub { ensure "$DOT/helix/*" => "$HOME/.config/helix/" }; desc 'Install ~/.config/ghostty'; task 'home_ghostty', sub { ensure "$DOT/ghostty/*" => "$HOME/.config/ghostty/" }; +desc 'Install ~/.cursor'; +task 'home_cursor', sub { + file "$HOME/.cursor" => ensure => 'directory', mode => '0750'; + ensure "$DOT/cursor/commands/*" => "$HOME/.cursor/commands/", '0750'; +}; + desc 'Install ~/scripts'; task 'home_scripts', sub { ensure "$DOT/scripts/*" => "$HOME/scripts/", '0750' }; diff --git a/dotfiles/cursor/commands/cap.md b/dotfiles/cursor/commands/cap.md new file mode 100644 index 0000000..42132bd --- /dev/null +++ b/dotfiles/cursor/commands/cap.md @@ -0,0 +1,3 @@ +# Commit and push to git + +Commit and push to git all changes you made. -- cgit v1.2.3