Created
October 20, 2018 13:14
-
-
Save rahulballal/dc25c001eda6ab3d8d2816d70aa97d75 to your computer and use it in GitHub Desktop.
my vscode 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
{ | |
"workbench.iconTheme": "eq-material-theme-icons", | |
"workbench.activityBar.visible": true, | |
"workbench.editor.enablePreview": false, | |
"workbench.settings.editor": "json", | |
"workbench.colorTheme": "Material Theme High Contrast", | |
"editor.fontFamily": "Inconsolata", | |
"editor.minimap.enabled": false, | |
"editor.formatOnSave": false, | |
"editor.tabSize": 2, | |
"editor.fontSize": 14, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
}, | |
"editor.renderWhitespace": "boundary", | |
"editor.renderLineHighlight": "gutter", | |
"editor.foldingStrategy": "indentation", | |
"terminal.integrated.fontFamily": "Hack Nerd Font Mono", | |
"explorer.openEditors.visible": 0, | |
"git.autofetch": true, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/*/**": true | |
}, | |
"tslint.alwaysShowStatus": true, | |
"tslint.configFile": "tslint.json", | |
"tslint.run": "onSave", | |
"prettier.printWidth": 120, | |
"prettier.semi": true, | |
"prettier.arrowParens": "always", | |
"prettier.trailingComma": "all", | |
"prettier.tslintIntegration": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment