Skip to content

Instantly share code, notes, and snippets.

@kodekracker
Last active October 12, 2023 07:46
Show Gist options
  • Save kodekracker/49de695e7c02a417bcf2b98fca7d32af to your computer and use it in GitHub Desktop.
Save kodekracker/49de695e7c02a417bcf2b98fca7d32af to your computer and use it in GitHub Desktop.
VS Code settings
{
"workbench.productIconTheme": "material-product-icons",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Material Theme Ocean",
"telemetry.telemetryLevel": "off",
"files.associations": {
"*.env.staging": "env",
"*.env.development": "env",
"*.env.production": "env",
"*.env.example": "env",
"*.yaml.example": "yaml",
"*.yml.example": "yaml",
"docker-compose.*.yaml": "dockercompose",
"docker-compose.*.yml": "dockercompose",
"*.jinja": "jinja",
"*.jinja2": "jinja",
"*.j2": "jinja"
},
"[python]": {
"editor.formatOnType": true
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"files.exclude": {
"**/__pycache__": true
},
"aws.resources.enabledResources": [
"AWS::RDS::DBInstance"
],
"aws.cloudWatchLogs.limit": 1000,
"aws.telemetry": false,
"workbench.startupEditor": "none",
"editor.rulers": [
80,120
],
"gitlens.advanced.messages": {
"suppressCreatePullRequestPrompt": true
},
"python.languageServer": "Pylance",
"python.analysis.autoFormatStrings": true,
"python.analysis.gotoDefinitionInStringLiteral": true,
"python.analysis.addImport.exactMatchOnly": true,
"python.autoComplete.extraPaths": [
"${workspaceFolder}/src"
],
"python.analysis.extraPaths": [
"${workspaceFolder}/src"
],
"git.openRepositoryInParentFolders": "never",
"files.readonlyInclude": {
"**/.venv/**/*": true,
"**/.pyenv/**": true,
"**/env/**": true,
"**/node_modules/**": true
},
"extensions.ignoreRecommendations": true,
"terminal.integrated.persistentSessionReviveProcess": "never",
"gitlens.currentLine.pullRequests.enabled": false,
"window.zoomLevel": 1,
"application.shellEnvironmentResolutionTimeout": 20
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment