diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d5ac763 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.aider* +.env diff --git a/aider.conf b/aider.conf new file mode 100644 index 0000000..ccaba01 --- /dev/null +++ b/aider.conf @@ -0,0 +1,17 @@ +{ + "model": "gpt-4-turbo", + "openai_api_key": "env:OPENAI_API_KEY", + "pretty": true, + "max_tokens": 8192, + "auto_commit": true, + "auto_stash": true, + "auto_token_budget": true, + "editor": "vim", + "message_color": "blue", + "tool_use": "auto", + "auto_lint": true, + "auto_test": true, + "test_command": "make test", + "lint_command": "make lint", + "ignore": ["research"] +}