Skip to content

Instantly share code, notes, and snippets.

@plinionaves
Last active April 14, 2022 01:06
Show Gist options
  • Save plinionaves/2941b258a8d385fa1660e965b5246f47 to your computer and use it in GitHub Desktop.
Save plinionaves/2941b258a8d385fa1660e965b5246f47 to your computer and use it in GitHub Desktop.
Ionic + Angular VSCode Settings
{
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 2,
"window.titleBarStyle": "custom",
"editor.autoIndent": true,
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
"editor.codeLens": false,
"editor.cursorBlinking": "solid",
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorStyle": "line",
"editor.fontSize": 16,
"editor.fontFamily": "Dank Mono, Operator Mono, Fira Code, Inconsolata, Menlo",
"editor.fontLigatures": true,
"editor.formatOnPaste": true,
"editor.formatOnType": false,
"editor.formatOnSave": true,
"editor.letterSpacing": 0.5,
"editor.lineHeight": 25,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"editor.wordWrap": "off",
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.js": {
"when": "$(basename).ts"
},
"**/*.js.map": {
"when": "$(basename)"
}
},
"files.hotExit": "onExit",
"files.defaultLanguage": "typescript",
"files.trimTrailingWhitespace": true,
"prettier.singleQuote": true,
"prettier.printWidth": 100,
"peacock.affectActivityBar": true,
"peacock.affectStatusBar": true,
"peacock.affectTitleBar": false,
"peacock.favoriteColors": [
{
"name": "Angular Red",
"value": "#b52e31"
},
{
"name": "Auth0 Orange",
"value": "#eb5424"
},
{
"name": "Azure Blue",
"value": "#007fff"
},
{
"name": "Gatsby Purple",
"value": "#639"
},
{
"name": "JavaScript Yellow",
"value": "#f9e64f"
},
{
"name": "Mandalorian Blue",
"value": "#1857a4"
},
{
"name": "Node Green",
"value": "#215732"
},
{
"name": "React Blue",
"value": "#00b3e6"
},
{
"name": "Something Different",
"value": "#832561"
},
{
"name": "Vue Green",
"value": "#42b883"
}
],
"html.format.enable": false,
"angular-template-formatter.indentWidth": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment