Created
November 7, 2022 16:39
-
-
Save Grafikart/e55b488c34f0753b42d9766e7d5ecdbf to your computer and use it in GitHub Desktop.
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
[ | |
{ | |
"key": "alt+1", | |
"command": "multiCommand.makeRoom" | |
}, | |
{ | |
"key": "ctrl+d", | |
"command": "editor.action.smartSelect.expand", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+d", | |
"command": "editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+p", | |
"command": "workbench.action.showCommands" | |
}, | |
{ | |
"key": "ctrl+o", | |
"command": "workbench.action.quickOpen" | |
}, | |
{ | |
"key": "ctrl+shift+o", | |
"command": "revealFileInOS" | |
}, | |
{ | |
"key": "ctrl+r", | |
"command": "workbench.action.gotoSymbol" | |
}, | |
{ | |
"key": "ctrl+n", | |
"command": "explorer.newFile" | |
}, | |
{ | |
"key": "ctrl+alt+l", | |
"command": "editor.action.formatDocument" | |
}, | |
{ | |
"key": "ctrl+t", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "ctrl+k", | |
"command": "workbench.view.scm" | |
}, | |
{ | |
"key": "alt+1", | |
"command": "workbench.view.explorer", | |
"when": "view.workbench.scm.visible" | |
}, | |
] |
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
{ | |
"window.zoomLevel": 2, | |
"editor.minimap.enabled": false, | |
"editor.formatOnSave": false, | |
"editor.formatOnPaste": false, | |
"editor.renderWhitespace": "trailing", | |
"editor.linkedEditing": true, | |
"editor.occurrencesHighlight": false, | |
"editor.suggest.insertMode": "replace", | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"files.autoSave": "onFocusChange", | |
"files.defaultLanguage": "markdown", | |
"explorer.autoReveal": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"workbench.tree.indent": 15, | |
"workbench.tree.renderIndentGuides": "always", | |
"workbench.editor.enablePreview": false, | |
"emmet.triggerExpansionOnTab": true, | |
"git.confirmSync": false, | |
"git.enableSmartCommit": true, | |
"workbench.colorTheme": "Tokyo Night", | |
"editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.lineHeight": 28, | |
"editor.fontSize": 16, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorCustomizations": { | |
"[Tokyo Night]": { | |
"editor.selectionBackground": "#3D59A1", | |
"editor.selectionHighlightBackground": "#3D59A1" | |
} | |
}, | |
"gitlens.currentLine.enabled": false, | |
"gitlens.codeLens.enabled": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"multiCommand.commands": [ | |
{ | |
"command": "multiCommand.makeRoom", | |
"sequence": [ | |
"workbench.action.toggleSidebarVisibility", | |
"workbench.action.toggleActivityBarVisibility", | |
] | |
} | |
], | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"javascript.preferences.importModuleSpecifierEnding": "js", | |
"typescript.preferences.importModuleSpecifierEnding": "js" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment