Last active
November 26, 2025 15:27
-
-
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", | |
| "files.autoGuessEncoding": true, | |
| "window.restoreWindows": "none", | |
| "git.ignoreMissingGitWarning": true, | |
| "editor.insertSpaces": true, | |
| "editor.suggestSelection": "first", | |
| "security.workspace.trust.enabled": false, | |
| "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
| "workbench.settings.applyToAllProfiles": [ | |
| "editor.fontFamily" | |
| ], | |
| "editor.fontFamily": "'Cacadia Mono'", | |
| "workbench.colorTheme": "Default Light Modern" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment