Skip to content

Instantly share code, notes, and snippets.

@urre
Last active November 21, 2017 15:56
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 urre/7ef767fa4e3bed3a13e7214abf7e3c13 to your computer and use it in GitHub Desktop.
Save urre/7ef767fa4e3bed3a13e7214abf7e3c13 to your computer and use it in GitHub Desktop.
My Current VS Code User Settings
{
"editor.fontSize": 16,
"editor.fontFamily": "'SF Mono', Menlo, Monaco, 'Courier New', monospace",
"editor.fontWeight": "300",
"search.exclude": {
"**/.git": true,
"node_modules": true,
"tmp/**": true,
"assets/rev/": true,
"assets/build/": true,
".asset-cache": true,
"_site": true
},
"files.watcherExclude": {
"tmp/**": true,
"node_modules/**": true,
},
"files.defaultLanguage": "html",
"explorer.openEditors.visible": 0,
"editor.trimAutoWhitespace": true,
"editor.trimTrailing": true,
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"editor.detectIndentation": true,
"editor.cursorBlinking": "phase",
"editor.tabSize": 2,
"editor.insertSpaces": false,
"editor.autoIndent": true,
"editor.matchBrackets": false,
"workbench.startupEditor": "newUntitledFile",
"prettier.singleQuote": true,
"prettier.semi": false,
"prettier.useTabs": true,
"blankLine.keepOneEmptyLine": true,
"blankLine.triggerOnSave": true,
"blankLine.languageIds": ["javascript", "blade.php", "json", "css", "scss"],
"phpcs.standard": "WordPress",
"workbench.colorTheme": "Bimbo Theme",
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.fontFamily": "SF Mono",
"markdown.styles": [
"https://rawgit.com/raycon/vscode-markdown-css/master/markdown-github.css",
"https://rawgit.com/raycon/vscode-markdown-css/master/markdown-light.css"
],
"window.zoomLevel": 0,
"window.restoreWindows": "all",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"php": "html",
"blade": "html"
},
"emmet.showAbbreviationSuggestions": true,
"emmet.showExpandedAbbreviation": "always",
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html",
"blade": "html"
},
"workbench.panel.location": "bottom",
"editor.minimap.enabled": false,
"window.title": "${activeEditorMedium}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment