Skip to content

Instantly share code, notes, and snippets.

@danfoust
Created December 28, 2025 21:03
Show Gist options
  • Select an option

  • Save danfoust/667320af612293b34ad6d918057f4a69 to your computer and use it in GitHub Desktop.

Select an option

Save danfoust/667320af612293b34ad6d918057f4a69 to your computer and use it in GitHub Desktop.
VSCode settings
{
// 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