Last active
July 16, 2020 03:44
-
-
Save windwp/b8750e8d225e02901672fc8c6324361e to your computer and use it in GitHub Desktop.
auto code
This file contains hidden or 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 override the defaultsauto[] | |
[ | |
{ | |
"key": "alt+b", | |
"command": "workbench.action.navigateToLastEditLocation" | |
}, | |
{ | |
"key": "ctrl+k ctrl+q", | |
"command": "-workbench.action.navigateToLastEditLocation" | |
}, | |
{ | |
"key": "ctrl+q", | |
"command": "-workbench.action.quit" | |
} | |
] |
This file contains hidden or 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
{ | |
"workbench.colorTheme": "Gruvbox Material Dark", | |
"editor.fontSize": 14, | |
"editor.lineNumbers": "relative", | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.lineHeight": 24, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/*/**": true | |
}, | |
"explorer.decorations.badges": false, | |
"editor.autoClosingOvertype": "never", | |
"editor.autoClosingBrackets": "never", | |
"problems.decorations.enabled": false, | |
"outline.problems.colors": false, | |
"outline.problems.enabled": false, | |
"outline.problems.badges": false, | |
"javascript.autoClosingTags": false, | |
"javascript.suggest.enabled": false, | |
"javascript.suggest.completeJSDocs": false, | |
"javascript.suggest.autoImports": false, | |
"javascript.suggestionActions.enabled": false, | |
"typescript.check.npmIsInstalled": false, | |
"typescript.format.enable": false, | |
"typescript.format.insertSpaceAfterCommaDelimiter": false, | |
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": false, | |
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false, | |
"typescript.format.insertSpaceAfterSemicolonInForStatements": false, | |
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": false, | |
"typescript.preferences.useAliasesForRenames": false, | |
"typescript.suggest.autoImports": false, | |
"typescript.suggest.enabled": false, | |
"typescript.suggest.paths": false, | |
"typescript.surveys.enabled": false, | |
"typescript.suggestionActions.enabled": false, | |
"typescript.suggest.completeJSDocs": false, | |
"typescript.suggest.includeAutomaticOptionalChainCompletions": false, | |
"typescript.validate.enable": false, | |
"javascript.format.enable": false, | |
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": false, | |
"breadcrumbs.enabled": false, | |
"workbench.activityBar.visible": true, | |
"window.zoomLevel": 1, | |
"editor.autoIndent": "none", | |
"workbench.startupEditor": "welcomePage", | |
"editor.autoClosingQuotes": "never", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment