Skip to content

Instantly share code, notes, and snippets.

@Thaina
Last active January 3, 2020 08:26
Show Gist options
  • Save Thaina/b3c02938d930c3b7abfd533480513e7e to your computer and use it in GitHub Desktop.
Save Thaina/b3c02938d930c3b7abfd533480513e7e to your computer and use it in GitHub Desktop.
my vscode
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "tab",
"command": "-acceptSelectedSuggestion",
"when": "editorTextFocus && suggestWidgetVisible"
}
]
{
"editor.autoSurround": "never",
"editor.autoClosingQuotes": "never",
"editor.autoClosingBrackets": "never",
"editor.renderWhitespace": "selection",
"editor.snippetSuggestions": "bottom",
"editor.suggestSelection": "first",
"editor.wordWrap": "off",
"editor.insertSpaces": false,
"editor.minimap.enabled": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"explorer.sortOrder": "type",
"workbench.colorTheme": "Visual Studio Dark",
"files.eol": "\n",
"files.autoSave": "afterDelay",
"files.trimTrailingWhitespace": true,
"git.confirmSync": false,
"git.autofetch": true,
"git.enableSmartCommit": true,
"scm.alwaysShowProviders": true,
"diffEditor.ignoreTrimWhitespace": false,
"html.format.wrapLineLength": 0,
"javascript.format.insertSpaceAfterCommaDelimiter": false,
"javascript.format.insertSpaceAfterSemicolonInForStatements": false,
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": false,
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": false,
"typescript.format.insertSpaceAfterCommaDelimiter": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"csharp.referencesCodeLens.enabled": false,
"[csharp]": {
"editor.defaultFormatter": "ms-vscode.csharp"
},
"blender.executables": [
{
"path": "c:\\Program Files\\Blender Foundation\\Blender\\blender.exe",
"name": "",
"isDebug": false
}
],
"ttProcessor.TTPath": "C:\\\"Program Files (x86)\"\\\"Microsoft Visual Studio\"\\2017\\Community\\Common7\\IDE\\TextTransform.exe",
"terminal.integrated.rendererType": "dom",
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment