Created
October 6, 2017 18:41
-
-
Save luchillo17/80796fd1636efdf9e44d6c3cff95d1b8 to your computer and use it in GitHub Desktop.
VSCode personal user configs public
This file contains 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
// 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