Created
November 5, 2024 13:20
-
-
Save jakeweidokal/7f6cccfdd8a553349c95a8945ff9e61c to your computer and use it in GitHub Desktop.
VS Code User 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
{ | |
"editor.tabSize": 2, | |
"editor.minimap.enabled": false, | |
"workbench.sideBar.location": "right", | |
"editor.formatOnSave": true, | |
"editor.fontSize": 14, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": "explicit", | |
"source.organizeImports": "explicit" | |
}, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.bracketPairColorization.enabled": true, | |
"editor.guides.bracketPairs": "active", | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.defaultProfile.windows": "PowerShell", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"git.confirmSync": false, | |
"svelte.enable-ts-plugin": true, | |
"git.enableSmartCommit": true, | |
// "json.validate.enable": false, | |
// "css.validate": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment