Created
December 28, 2025 21:03
-
-
Save danfoust/667320af612293b34ad6d918057f4a69 to your computer and use it in GitHub Desktop.
VSCode settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| // Editor | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.codeActionsOnSave": { | |
| "source.organizeImports": "explicit", | |
| "source.fixAll.eslint": "explicit" | |
| }, | |
| "editor.formatOnSave": true, | |
| "editor.formatOnPaste": true, | |
| "editor.renderWhitespace": "all", | |
| "editor.minimap.enabled": false, | |
| "editor.rulers": [80, 120], | |
| "editor.snippetSuggestions": "bottom", | |
| "editor.stickyScroll.enabled": true, | |
| // Explorer | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.confirmDelete": false, | |
| // Files | |
| "files.associations": { | |
| "*.mdx": "markdown" | |
| }, | |
| // Formats | |
| "[dockercompose]": { | |
| "editor.insertSpaces": true, | |
| "editor.tabSize": 2, | |
| "editor.autoIndent": "advanced", | |
| "editor.quickSuggestions": { | |
| "other": true, | |
| "comments": false, | |
| "strings": true | |
| } | |
| }, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "[terraform]": { | |
| "editor.defaultFormatter": "hashicorp.terraform" | |
| }, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| // Telemetry | |
| "telemetry.telemetryLevel": "off", | |
| // Terminal | |
| "terminal.integrated.stickyScroll.enabled": false, | |
| ////////////////////////////////////////////////////////////////////////////// | |
| // Extensions | |
| ////////////////////////////////////////////////////////////////////////////// | |
| // Claude | |
| "claudeCode.useTerminal": true, | |
| "claudeCode.preferredLocation": "panel", | |
| // Git | |
| "git.autofetch": true, | |
| "git.replaceTagsWhenPull": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment