Skip to content

Instantly share code, notes, and snippets.

@fredrik
Created January 28, 2025 07:19
Show Gist options
  • Save fredrik/8dcd7b24ec0b16a90dbda4e090add004 to your computer and use it in GitHub Desktop.
Save fredrik/8dcd7b24ec0b16a90dbda4e090add004 to your computer and use it in GitHub Desktop.
~/Library/Application Support/Code/User/settings.json
{
"workbench.colorTheme": "Solarized Light",
"editor.minimap.enabled": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"editor.formatOnSave": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.unusedImports": "explicit",
"source.fixAll": "explicit",
},
"editor.defaultFormatter": "charliermarsh.ruff",
},
"python.analysis.autoImportCompletions": true,
"python.terminal.activateEnvironment": true,
"security.workspace.trust.untrustedFiles": "open",
"github.copilot.editor.enableAutoCompletions": true,
"ruff.format.args": [
"--line-length=120"
],
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"ruff.organizeImports": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment