Last active
January 3, 2020 08:26
-
-
Save Thaina/b3c02938d930c3b7abfd533480513e7e to your computer and use it in GitHub Desktop.
my vscode
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 key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "tab", | |
"command": "-acceptSelectedSuggestion", | |
"when": "editorTextFocus && suggestWidgetVisible" | |
} | |
] |
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.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