Skip to content

Instantly share code, notes, and snippets.

@chrismademe
Last active May 25, 2020 12:25
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/ad041d6c23bcfe397df79ee996cf7998 to your computer and use it in GitHub Desktop.
Save chrismademe/ad041d6c23bcfe397df79ee996cf7998 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,
"editor.lineHeight": 34,
"editor.formatOnSave": true,
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.codeLens": 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,
"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,
"prettier.disableLanguages": ["yaml"],
"[yaml]": {
"editor.formatOnSave": false
},
"prettier.trailingComma": "none",
"workbench.colorTheme": "Dobri Next -A01- Dark",
"intelephense.completionProvider.backslashPrefix": false,
"php.suggest.basic": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"editor.renderWhitespace": "all",
"emmet.includeLanguages": {
"blade.php": "html",
"vue": "html",
"twig": "html",
"njk": "html"
},
"files.associations": {
"artisan": "php",
"serve": "php",
".php_cs": "php",
".php_cs.dist": "php",
"*.php": "php" // this is super important, otherwise intelephense will not auto-index your project.
},
"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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment