Skip to content

Instantly share code, notes, and snippets.

@ackro
Last active August 21, 2018 13:09
Show Gist options
  • Save ackro/ffc4e268322b970f9ba589a55d08f02f to your computer and use it in GitHub Desktop.
Save ackro/ffc4e268322b970f9ba589a55d08f02f to your computer and use it in GitHub Desktop.
Visual Studio Code User Settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "'Fira Code', 'Source Code Pro', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.cursorBlinking": "phase",
"editor.cursorStyle": "block",
"editor.multiCursorModifier": "ctrlCmd",
"editor.tabSize": 2,
"editor.tabCompletion": true,
"editor.wordWrap": "off",
"eslint.validate": ["javascript", "javascriptreact", "vue"],
"extensions.ignoreRecommendations": false,
"files.associations": {
"*.inc": "php",
"*.module": "php",
"Dockerfile.*": "dockerfile"
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"terminal.external.osxExec": "iTerm.app",
"window.openFilesInNewWindow": "off",
"window.nativeTabs": true,
"window.newWindowDimensions": "maximized",
"window.zoomLevel": 0,
"workbench.editor.enablePreview": false,
"git.confirmSync": false,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"php.suggest.basic": false,
"prettier.disableLanguages": [],
"prettier.singleQuote": true,
"prettier.eslintIntegration": true,
"prettier.tabWidth": 2,
"prettier.trailingComma": "all",
"prettier.printWidth": 100,
"reason.codelens.enabled": true,
"reason.diagnostics.tools": ["merlin", "bsb"],
"workbench.colorTheme": "Night Owl",
"editor.formatOnPaste": true,
"editor.formatOnType": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment