Skip to content

Instantly share code, notes, and snippets.

@chrismademe
Created September 17, 2020 13:28
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 chrismademe/5b1791c73205572efea369cfaf85313f to your computer and use it in GitHub Desktop.
Save chrismademe/5b1791c73205572efea369cfaf85313f to your computer and use it in GitHub Desktop.
VS Code Settings
{
"workbench.iconTheme": "material-icon-theme",
"editor.fontFamily": "'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 14, //14
"editor.lineHeight": 42,
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.codeLens": false,
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?_",
"editor.snippetSuggestions": "top",
"diffEditor.renderSideBySide": false,
"workbench.startupEditor": "none",
"editor.renderControlCharacters": false,
"editor.renderIndentGuides": false,
"editor.renderLineHighlight": "none",
"editor.matchBrackets": false,
"editor.emptySelectionClipboard": false,
"editor.quickSuggestionsDelay": 0,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"window.newWindowDimensions": "offset",
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.shell.osx": "/bin/zsh",
"prettier.tabWidth": 4,
"git.enableSmartCommit": true,
"prettier.useTabs": true,
"scss.lint.important": "warning",
"prettier.singleQuote": true,
"tailwindCSS.emmetCompletions": true,
"emmet.triggerExpansionOnTab": true,
"prettier.disableLanguages": ["yaml"],
"[yaml]": {
"editor.formatOnSave": false
},
"prettier.trailingComma": "none",
"workbench.colorTheme": "Material Theme Palenight",
"php.suggest.basic": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"editor.renderWhitespace": "none",
"emmet.includeLanguages": {
"blade": "html",
"vue": "html",
"twig": "html",
"njk": "html"
},
"files.associations": {
"artisan": "php",
"serve": "php",
".php_cs": "php",
".php_cs.dist": "php"
},
"editor.multiCursorModifier": "ctrlCmd",
"zenMode.fullScreen": false,
"explorer.openEditors.visible": 0,
"editor.suggestFontSize": 12,
"editor.suggestLineHeight": 24,
"terminal.integrated.fontSize": 12,
"terminal.integrated.lineHeight": 1.5,
"terminal.integrated.cursorStyle": "line",
"intelephense.diagnostics.run": "onSave",
"intelephense.files.exclude": [
"**/.git/**",
"**/.svn/**",
"**/.hg/**",
"**/CVS/**",
"**/.DS_Store/**",
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**/{Tests,tests}/**",
"*.blade.php"
],
"sync.removeExtensions": false,
"sync.gist": "ad041d6c23bcfe397df79ee996cf7998",
"sync.forceUpload": true,
"svelte.language-server.runtime": "/usr/local/bin/node"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment