Skip to content

Instantly share code, notes, and snippets.

@yacafx
Last active March 27, 2023 23:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yacafx/1bc86f8c813fe6ef0f80eea9092daf92 to your computer and use it in GitHub Desktop.
Save yacafx/1bc86f8c813fe6ef0f80eea9092daf92 to your computer and use it in GitHub Desktop.
Configuration for VS Code
{
"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