Last active
November 11, 2016 19:44
-
-
Save OneOfOne/9deef9582dacd5b698b0 to your computer and use it in GitHub Desktop.
vscode config (1.8.0-insider update)
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
{ | |
"editor.fontFamily": "Fira Code Medium", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 13, | |
"editor.tabSize": 4, | |
"editor.insertSpaces": false, | |
"editor.quickSuggestionsDelay": 50, | |
"editor.renderWhitespace": "boundary", | |
"editor.stablePeek": true, | |
"editor.glyphMargin": true, | |
//"editor.wrappingColumn": 125, | |
"editor.rulers": [ | |
120 | |
], | |
"editor.renderIndentGuides": true, | |
"editor.cursorBlinking": "smooth", | |
"editor.formatOnSave": true, | |
"extensions.autoUpdate": true, | |
"terminal.integrated.fontLigatures": true, | |
"terminal.integrated.shell.linux": "/bin/xonsh", | |
"terminal.external.linuxExec": "konsole", | |
"telemetry.enableTelemetry": false, | |
"telemetry.enableCrashReporter": false, | |
"window.reopenFolders": "none", | |
//"window.zoomLevel": 0.4, | |
"files.trimTrailingWhitespace": true, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.DS_Store": true, | |
"**/*.pprof": true, | |
"**/*.prof": true, | |
"**/*.test": true, | |
"**/*.db": true, | |
"**/compiled.js": true | |
}, | |
"files.autoSave": "onFocusChange", | |
"files.associations": { | |
"*.mustache": "html", | |
"*.user": "json" | |
}, | |
"search.quickOpen.includeSymbols": true, | |
"git.autofetch": false, | |
"git.confirmSync": false, | |
"go.formatTool": "goimports", | |
"go.lintOnSave": false, | |
"go.useCodeSnippetsOnFunctionSuggest": true, | |
//"html.format.indentInnerHtml": true, | |
"html.suggest.angular1": false, | |
"html.suggest.ionic": false, | |
"html.format.maxPreserveNewLines": 1, | |
"html.format.endWithNewline": true, | |
"html.format.extraLiners": "-", | |
"clang.cxxflags": [ | |
"-std=c++1z", | |
"-Wall", | |
"-Wextra", | |
"-pthread" | |
], | |
"bookmarks.useStickyBookmarks": true, | |
"typescript.tsdk": "/usr/lib/node_modules/typescript/lib/", | |
"typescript.useCodeSnippetsOnMethodSuggest": true, | |
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
"tslint.validateWithDefaultConfig": true, | |
"tslint.autoFixOnSave": true, | |
"eslint.autoFixOnSave": true, | |
"code-runner.saveFileBeforeRun": true, | |
"code-runner.enableAppInsights": false, | |
"code-runner.runInTerminal": true, | |
"auto-close-tag.activationOnLanguage": [ | |
"html", "xml", "php" | |
], | |
"auto-close-tag.enableAutoCloseSelfClosingTag": false, | |
"colorHelper.resident": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment