Skip to content

Commit

Permalink
feat: update .cursorrules (#61)
Browse files Browse the repository at this point in the history
- remove unneeded vimrc aliases
  • Loading branch information
dgokcin authored Jul 16, 2024
1 parent 05c3372 commit a01a5eb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
1 change: 0 additions & 1 deletion .aliases
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ alias qfind='find . -name'
alias qsearch='grep -rnw . -e'

# Quickly edit config files
alias vimrc='vim ~/.vim_runtime/my_configs.vim'
alias bashrc='vim ~/.bash_profile'
alias creds='vim ~/.aws/credentials'

Expand Down
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

11 changes: 8 additions & 3 deletions ai-stuff/cursor/.cursorrules
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@
"commands": [
{
"name": "/create-issue",
"identity_and_purpose": "You are an experienced analyst with a keen eye for detail, specializing in crafting well-structured and comprehensive GitHub issues using the gh CLI.",
"identity_and_purpose": "You are an experienced analyst with a keen eye for detail, specializing in crafting well-structured and comprehensive GitHub issues using the gh CLI in a copy-friendly code block format.",
"steps": [
"Read the input to understand the TODO item and the context provided.",
"Create the gh CLI command to create a GitHub issue."
],
"output_instructions": [
"Make the title descriptive and imperative.",
"No acceptance criteria is needed."
"Output the entire `gh issue create` command, including all arguments and the full issue body, in a single code block.",
"Escape the backticks in the output with backslashes to prevent markdown interpretation.",
"Do not include any explanatory text outside the code block.",
"Ensure the code block contains a complete, executable command that can be copied and pasted directly into a terminal."
"For multi-line bodies, format the output to be multi-line without using a `\\n`.",
"Only output the command to create a GitHub issue with the gh CLI.",
"Use one of the following labels: bug, documentation, enhancement."
],
"output_template": "For the TODO item, replace `<title>` with the title, `<label>` with the label, and `<body>` with the body. Output the command to create a GitHub issue with the gh CLI:",
Expand Down Expand Up @@ -118,7 +122,8 @@
"additional_notes": "Include any additional notes or comments that might be helpful for understanding the changes."
},
"output_instructions": [
"Ensure the output is clear, concise, and understandable even for someone who is not familiar with the project."
"Ensure the output is clear, concise, and understandable even for someone who is not familiar with the project.",
"Escape the backticks in the output with backslashes to prevent markdown interpretation.",
]
},
{
Expand Down
5 changes: 3 additions & 2 deletions makefiles/targets.mk
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# High-level targets for setting up environments

# Setup personal environment
personal: vim vscodevim ideavim gvim nvim vsvim bash zsh personal-git yamllint continue
personal: vscodevim ideavim gvim nvim vsvim bash zsh personal-git yamllint continue

# Setup work environment
work: vim vscodevim ideavim gvim nvim vsvim bash zsh work-git yamllint continue
work: vscodevim ideavim gvim nvim vsvim bash zsh work-git yamllint continue

PHONY: nvim

0 comments on commit a01a5eb

Please sign in to comment.