Skip to content

Instantly share code, notes, and snippets.

@luchillo17
Created October 6, 2017 18:41
Show Gist options
  • Save luchillo17/80796fd1636efdf9e44d6c3cff95d1b8 to your computer and use it in GitHub Desktop.
Save luchillo17/80796fd1636efdf9e44d6c3cff95d1b8 to your computer and use it in GitHub Desktop.
VSCode personal user configs public
// Place your settings in this file to overwrite the default settings
{
// Temporal fix for 1.14.0 issue https://github.com/Microsoft/vscode/issues/10497
"editor.tabSize": 2,
"editor.autoIndent": true,
"editor.detectIndentation": false,
"editor.wrappingIndent": "indent",
"editor.wordWrap": "on",
"editor.acceptSuggestionOnEnter": "off",
"editor.renderIndentGuides": true,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"editor.snippetSuggestions": "top",
"editor.minimap.showSlider": "always",
"extensions.autoUpdate": true,
//-------- Window configuration --------
"window.openFilesInNewWindow": "off",
//-------- Files configuration --------
"files.associations": {
".bash*": "shellscript",
".sh*": "shellscript"
},
"files.trimTrailingWhitespace": true,
//-------- EMMET configuration --------
"emmet.useNewEmmet": true,
"emmet.syntaxProfiles": {
"html": {
"attr_quotes": "single"
},
"jsx": {
"self_closing_tag": true
},
"tsx": {
"self_closing_tag": true
}
},
//-------- HTML configuration --------
"html.format.endWithNewline": true,
//-------- TypeScript configuration --------
"typescript.useCodeSnippetsOnMethodSuggest": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"window.zoomLevel": 1,
"workbench.iconTheme": "vscode-icons",
"sync.host": "",
"sync.pathPrefix": "",
"cSpell.userWords": [
"Dropdown",
"Fira",
"Gulpclass",
"Gulpfile",
"Injectable",
"Signup",
"Truthy",
"Validators",
"backend",
"memberof",
"minimap",
"ngrx",
"ngxerrors",
"polyfills",
"postgres",
"primeng",
"repo",
"vsicons"
],
"sync.quietSync": false,
"vsicons.projectDetection.autoReload": true,
"material-icon-theme.showUpdateMessage": false,
"extensions.ignoreRecommendations": false,
"workbench.colorTheme": "Dark++",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment