Skip to content

Instantly share code, notes, and snippets.

@AshKyd
Created November 3, 2025 02:07
Show Gist options
  • Select an option

  • Save AshKyd/c182bba00be697cda01dfc69902c000d to your computer and use it in GitHub Desktop.

Select an option

Save AshKyd/c182bba00be697cda01dfc69902c000d to your computer and use it in GitHub Desktop.
My VSCode config
{
"workbench.colorTheme": "GitHub Light",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.rulers": [
{
"column": 80
},
{
"column": 120
}
],
"explorer.confirmDelete": false,
"git.enableSmartCommit": true,
"svelte.enable-ts-plugin": true,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"workbench.startupEditor": "none",
"explorer.confirmDragAndDrop": false,
"explorer.autoReveal": false,
"git.openRepositoryInParentFolders": "never",
"javascript.updateImportsOnFileMove.enabled": "always",
"gitlens.showWelcomeOnInstall": false,
"gitlens.showWhatsNewAfterUpgrades": false,
"gitlens.plusFeatures.enabled": false,
"gitlens.virtualRepositories.enabled": false,
"git.confirmSync": false,
"terminal.integrated.enableMultiLinePasteWarning": false,
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.defaultProfile.osx": "zsh",
"gitlens.blame.separateLines": false,
"gitlens.blame.ignoreWhitespace": true,
"gitlens.codeLens.enabled": false,
"update.showReleaseNotes": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode"
},
"editor.fontFamily": "'Departure Mono', Monaco, 'Courier New', monospace",
"window.confirmSaveUntitledWorkspace": false,
"chat.commandCenter.enabled": false,
"workbench.editor.enablePreview": false,
"workbench.editorAssociations": {
"*.svg": "default"
},
"html.autoClosingTags": false,
"workbench.activityBar.location": "top",
"editor.accessibilitySupport": "off"
}
Departure Mono font: https://departuremono.com/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment