Skip to content

Instantly share code, notes, and snippets.

@garethredfern
Last active April 19, 2022 08:15
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/379a908ec767c24e4f0c57e478ced2ca to your computer and use it in GitHub Desktop.
Save garethredfern/379a908ec767c24e4f0c57e478ced2ca to your computer and use it in GitHub Desktop.
My VS Code settings
{
"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"
},
{
/**
* Better Defaults
**/
"editor.copyWithSyntaxHighlighting": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.emptySelectionClipboard": false,
"workbench.editor.enablePreview": false,
"window.newWindowDimensions": "inherit",
"files.trimTrailingWhitespace": true,
"diffEditor.renderSideBySide": false,
"editor.snippetSuggestions": "top",
"editor.detectIndentation": false,
"window.nativeFullScreen": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
/**
* Hide Everything
*/
"workbench.activityBar.visible": false,
"workbench.sideBar.location": "right",
"workbench.editor.showTabs": false,
"editor.minimap.enabled": false,
"editor.lineNumbers": "on",
/**
* PHP Intelephense
**/
"php.suggest.basic": false,
"editor.cursorBlinking": "solid",
"editor.fontFamily": "Dank Mono",
"editor.tabCompletion": "on",
"editor.formatOnPaste": true,
"editor.fontLigatures": true,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.lineHeight": 2,
"editor.fontSize": 16,
"editor.tabSize": 2,
"terminal.integrated.fontSize": 16,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.quickSuggestions": {
"strings": true
},
"files.associations": {
"*.mdx": "markdown"
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"breadcrumbs.enabled": false,
"debug.console.fontSize": 16,
"editor.wordWrap": "on",
"vetur.validation.templateProps": true,
"emmet.triggerExpansionOnTab": true,
"tailwindCSS.emmetCompletions": true,
"emmet.includeLanguages": {
"vue-html": "html",
"javascript": "javascriptreact"
},
"tailwindCSS.includeLanguages": {
"javascript": "javascript",
"plaintext": "html",
"vue": "html"
},
"git.autofetch": true,
"explorer.confirmDelete": false,
"workbench.colorTheme": "Night Owl",
"workbench.startupEditor": "none",
"editor.inlineSuggest.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment