Skip to content

Instantly share code, notes, and snippets.

@ngnam
Last active July 18, 2019 14:43
Show Gist options
  • Save ngnam/bd39682e20323e02abb5e737eeb0d8ee to your computer and use it in GitHub Desktop.
Save ngnam/bd39682e20323e02abb5e737eeb0d8ee to your computer and use it in GitHub Desktop.
.vscode/settings.json
{
"workbench.iconTheme": "material-icon-theme",
"peacock.favoriteColors": [
{
"name": "Angular Red",
"value": "#b52e31"
},
{
"name": "JavaScript Yellow",
"value": "#f9e64f"
},
{
"name": "Node JS",
"value": "#1857a4"
},
{
"name": "Dot net core",
"value": "#215732"
},
{
"name": "React Blue",
"value": "#00b3e6"
},
{
"name": "Java",
"value": "#832561"
},
{
"name": "Vue Green",
"value": "#42b883"
}
],
"editor.formatOnPaste": true,
"editor.fontFamily": "Consolas, 'Fira Code', monospace",
"workbench.editor.highlightModifiedTabs": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 60000,
"explorer.sortOrder": "type",
"editor.cursorStyle": "line-thin",
"editor.cursorBlinking": "smooth",
"terminal.integrated.cursorBlinking": true,
"files.trimFinalNewlines": true,
"editor.acceptSuggestionOnEnter": "smart",
"editor.renderWhitespace": "all",
"prettier.tabWidth": 4,
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
"editor.codeLens": false,
"editor.cursorSmoothCaretAnimation": true,
"editor.fontLigatures": true,
"editor.formatOnType": false,
"editor.letterSpacing": 1,
"editor.lineHeight": 25,
"editor.minimap.enabled": false,
"editor.tabCompletion": "on",
"editor.tabSize": 4,
"editor.detectIndentation": true,
"editor.wordWrap": "off",
"sonarlint.ls.javaHome": "C:\\Program Files\\Java\\jdk-12.0.1",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
"editor.codeLens": false,
"editor.cursorSmoothCaretAnimation": true,
"editor.fontLigatures": true,
"editor.formatOnType": false,
"editor.letterSpacing": 1,
"editor.lineHeight": 25,
"editor.minimap.enabled": false,
"editor.tabCompletion": "on",
"editor.tabSize": 4,
"editor.detectIndentation": true,
"editor.wordWrap": "off",
},
"git.ignoreLimitWarning": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.js": {
"when": "$(basename).ts"
},
"**/*.js.map": {
"when": "$(basename)"
},
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"files.hotExit": "onExit",
"files.defaultLanguage": "typescript",
"files.trimTrailingWhitespace": true,
"prettier.singleQuote": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment