Last active
March 27, 2023 23:47
-
-
Save yacafx/1bc86f8c813fe6ef0f80eea9092daf92 to your computer and use it in GitHub Desktop.
Configuration for VS Code
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.iconTheme": "vscode-icons", | |
"workbench.colorTheme": "Cobalt2", | |
"workbench.startupEditor": "none", | |
"editor.minimap.enabled": false, | |
"editor.formatOnSave": true, | |
"editor.fontSize": 18, | |
"editor.fontLigatures": true, | |
"editor.lineHeight": 25, | |
"editor.letterSpacing": 0.5, | |
"editor.fontWeight": "400", | |
"editor.cursorStyle": "line", | |
"editor.cursorWidth": 3, | |
"editor.cursorBlinking": "solid", | |
"editor.renderWhitespace": "all", | |
"editor.wordWrap": "on", | |
"prettier.eslintIntegration": true, | |
"prettier.singleQuote": true, | |
"prettier.tabWidth": 2, | |
"prettier.printWidth": 80, | |
"eslint.autoFixOnSave": true, | |
"eslint.alwaysShowStatus": true, | |
"files.autoSave": "onFocusChange", | |
"files.trimTrailingWhitespace": true, | |
"git.enableSmartCommit": true, | |
"vsicons.projectDetection.autoReload": true, | |
"vsicons.presets.angular": true, | |
"window.zoomLevel": 0, | |
"[typescript]": { | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
} | |
}, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"html.suggest.angular1": false, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.fontSize": 18, | |
"workbench.editor.tabSizing": "shrink", | |
"html.format.enable": true, | |
"html.format.preserveNewLines": true, | |
"editor.rulers": [ | |
80, | |
100, | |
120 | |
], | |
"workbench.editor.tabCloseButton": "off", | |
"editor.snippetSuggestions": "top", | |
"workbench.editor.closeEmptyGroups": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment