Skip to content

Instantly share code, notes, and snippets.

@garethredfern
Last active June 12, 2020 21:36
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 garethredfern/8875a5db0a0999318f64565388fb2e3a to your computer and use it in GitHub Desktop.
Save garethredfern/8875a5db0a0999318f64565388fb2e3a to your computer and use it in GitHub Desktop.
VS Code Settings
/**
* Activity Bar
**/
{
"key": "cmd+k cmd+e",
"command": "workbench.view.explorer"
},
{
"key": "cmd+k cmd+v",
"command": "workbench.view.scm"
},
{
"key": "cmd+k cmd+d",
"command": "workbench.view.debug"
},
{
"key": "cmd+k cmd+x",
"command": "workbench.extensions.action.showInstalledExtensions"
},
/**
* File Explorer
**/
{
"key": "cmd+d",
"command": "duplicate.execute",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !inputFocus"
},
{
"key": "cmd+n",
"command": "explorer.newFile",
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus"
},
{
"key": "shift+cmd+n",
"command": "explorer.newFolder",
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus"
},
{
"key": "cmd+r",
"command": "workbench.files.action.refreshFilesExplorer",
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus"
},
{
"workbench.colorTheme": "Night Owl",
"editor.formatOnSave": true,
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"editor.fontSize": 16,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.fontFamily": "Dank Mono",
"editor.fontLigatures": true,
"terminal.integrated.fontSize": 14,
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Silence the noise
"workbench.activityBar.visible": false,
"workbench.sideBar.location": "right",
"workbench.statusBar.visible": false,
"workbench.editor.showTabs": false,
"editor.minimap.enabled": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment