diff options
| -rw-r--r-- | dotfiles/Rexfile | 6 | ||||
| -rw-r--r-- | dotfiles/cursor/commands/cap.md | 3 |
2 files changed, 9 insertions, 0 deletions
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. |
