Last active
July 26, 2021 09:01
-
-
Save t-ubukata/35a86eec64d619c998c9e9d9434ec621 to your computer and use it in GitHub Desktop.
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
Visual Studio Code settings. |
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
[ | |
{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.nextEditor" | |
}, | |
{ | |
"key": "ctrl+shift+tab", | |
"command": "workbench.action.previousEditor" | |
}, | |
{ | |
"key": "enter", | |
"command": "-acceptSelectedSuggestionOnEnter", | |
"when": "acceptSuggestionOnEnter && editorTextFocus && suggestWidgetVisible && suggestionMakesTextEdit" | |
} | |
] |
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
{ | |
"editor.minimap.enabled": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.activityBar.visible": false, | |
"files.autoGuessEncoding": true, | |
"window.restoreWindows": "none", | |
"git.ignoreMissingGitWarning": true, | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"editor.suggestSelection": "first", | |
"security.workspace.trust.enabled": false, | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment