Skip to content

Instantly share code, notes, and snippets.

@gregrickaby
Created April 14, 2020 14:02
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 gregrickaby/ec84691d4d3642dd473429baba9f6dbd to your computer and use it in GitHub Desktop.
Save gregrickaby/ec84691d4d3642dd473429baba9f6dbd to your computer and use it in GitHub Desktop.
vscode settings to share with team
{
"breadcrumbs.enabled": true,
"explorer.openEditors.visible": 0,
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 13,
"editor.fontLigatures": true,
"editor.renderWhitespace": "all",
"editor.multiCursorModifier": "ctrlCmd",
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 100,
"editor.minimap.showSlider": "always",
"editor.smoothScrolling": true,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
},
"window.zoomLevel": 1,
"docker.containers.sortBy": "CreatedTime",
"git.autofetch": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"html-css-class-completion.includeGlobPattern": "/wp-content/themes/**/*.{css,html,php}",
"html-css-class-completion.excludeGlobPattern": "/node_modules/*",
"php.validate.run": "onType",
"phpcs.showSources": true,
"phpcs.ignorePatterns": [
"/wp-admin/*, /wp-includes/*"
],
"eslint.format.enable": false,
"eslint.alwaysShowStatus": true,
"eslint.options": {
"maxWarnings": "500",
"ignorePattern": [
"/node_modules/*",
"*.min.js"
]
},
"javascript.updateImportsOnFileMove.enabled": "always",
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"php-docblocker.useShortNames": true,
"php-docblocker.functionTemplate": {
"message": {
"gapAfter": true
},
"param": {
"gapBefore": true
},
"return": "",
"var": "",
"author": {
"content": "@author ${###:Greg Rickaby} <${###:greg@webdevstudios.com}>"
},
"extra": {
"content": "@since ${###:YYYY-MM-DD}"
},
},
"markdown.extension.toc.githubCompatibility": true,
"markdown.extension.toc.omittedFromToc": {
"README.md": [
"## Table of Contents"
]
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"emmet.includeLanguages": {
"vuh-html": "html",
"javascript": "javascriptreact"
},
"emmet.showSuggestionsAsSnippets": true,
"emmet.triggerExpansionOnTab": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.associations": {
"*.js": "javascriptreact"
},
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true,
"**/tmp": true
},
"search.exclude": {
"**/.git": true,
"**/tmp": true,
"**/node_modules": true,
"**/bower_components": true
},
"sync.gist": "",
"sync.autoDownload": false,
"sync.autoUpload": true,
"sync.forceDownload": false,
"sync.quietSync": true,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"npm.enableScriptExplorer": true,
"explorer.confirmDragAndDrop": false,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontFamily": "Fira Code",
"terminal.integrated.fontSize": 13,
"terminal.integrated.cursorStyle": "underline",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.rightClickBehavior": "paste",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Monokai Pro",
"workbench.iconTheme": "Monokai Pro Icons",
"workbench.editor.closeOnFileDelete": true,
"workbench.editor.highlightModifiedTabs": true,
"workbench.sideBar.location": "left",
"workbench.settings.editor": "json",
"workbench.settings.enableNaturalLanguageSearch": false,
"workbench.colorCustomizations": {
"terminal.background": "#141414",
"terminal.foreground": "#c9c9c9",
"terminalCursor.background": "#141414",
"terminalCursor.foreground": "#c9c9c9",
"terminal.selectionBackground": "#9494942e",
"terminal.ansiBlack": "#191918",
"terminal.ansiBrightBlack": "#2c2b2a",
"terminal.ansiBlue": "#206ec5",
"terminal.ansiBrightBlue": "#5389c5",
"terminal.ansiCyan": "#ac9166",
"terminal.ansiBrightCyan": "#ebc587",
"terminal.ansiGreen": "#587744",
"terminal.ansiBrightGreen": "#42824a",
"terminal.ansiMagenta": "#864651",
"terminal.ansiBrightMagenta": "#e795a5",
"terminal.ansiRed": "#b34538",
"terminal.ansiBrightRed": "#b33323",
"terminal.ansiWhite": "#f1eee7",
"terminal.ansiBrightWhite": "#ffffff",
"terminal.ansiYellow": "#d08949",
"terminal.ansiBrightYellow": "#c75a22"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment