Cursor is an AI-first code editor built on VS Code, designed specifically for AI-assisted programming with deep integration.
Unique Features:
- CMD+K for inline editing
- Chat with codebase context
- Multi-file editing
- AI-powered debugging
Advanced Cursor workflows including composer mode, custom instructions, and codebase indexing.
"""
You are an expert Python developer.
Follow PEP 8 style guide.
Use type hints for all functions.
Write comprehensive docstrings.
Prefer functional programming patterns.
"""
Advanced Cursor techniques including custom models, local LLMs, and enterprise deployment strategies.
{
"cursor.aiProvider": "custom",
"cursor.customModel": {
"endpoint": "http://localhost:11434/api/generate",
"model": "codellama:34b",
"apiKey": "optional"
},
"cursor.indexing": {
"excludePatterns": ["**/node_modules", "**/.git"],
"maxFileSize": 1048576,
"embeddingModel": "text-embedding-ada-002"
}
}