Created
November 3, 2025 02:07
-
-
Save AshKyd/c182bba00be697cda01dfc69902c000d to your computer and use it in GitHub Desktop.
My VSCode config
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
| { | |
| "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" | |
| } |
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
| Departure Mono font: https://departuremono.com/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment