Skip to content

Instantly share code, notes, and snippets.

@Grafikart
Created November 7, 2022 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Grafikart/e55b488c34f0753b42d9766e7d5ecdbf to your computer and use it in GitHub Desktop.
Save Grafikart/e55b488c34f0753b42d9766e7d5ecdbf to your computer and use it in GitHub Desktop.
VSCode
[
{
"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"
},
]
{
"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