Skip to content

Instantly share code, notes, and snippets.

@cecilemuller
Last active May 25, 2017 23:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cecilemuller/df41e74ba7f870d78b4ee1478c42b91c to your computer and use it in GitHub Desktop.
Save cecilemuller/df41e74ba7f870d78b4ee1478c42b91c to your computer and use it in GitHub Desktop.
My Visual Studio Code settings
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"editor.mouseWheelZoom": true,
"editor.renderWhitespace": "boundary",
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/.ignore": true
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.watcherExclude": {
"**/.git/objects/**": true
},
"search.exclude": {},
"scss.validate": false,
"less.validate": false,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"json.schemas": [],
"[json]": {
"editor.formatOnType": true
},
"[markdown]": {
"editor.wordWrap": "off"
},
"workbench.colorTheme": "Wildpeaks Theme",
"workbench.iconTheme": "material-icon-theme",
"workbench.statusBar.visible": true,
"workbench.welcome.enabled": true,
// March 2017 update
"search.useIgnoreFilesByDefault": true,
// April 2017 update
"workbench.colorCustomizations": {
"statusBar.background": "#111111",
"statusBar.noFolderBackground": "#111111",
"statusBar.debuggingBackground": "#332200",
"statusBar.foreground": "#666666",
"statusBarItem.activeBackground": "#1A1A1A",
"statusBarItem.hoverBackground": "#242424",
// Empty space behind tabs
"editorGroupHeader.tabsBackground": "#222222",
// Line between tabs
"tab.border": "#222222",
// Active tab
"tab.activeBackground": "#333333",
"tab.activeForeground": "#FFFFFF",
// Inactive tab
"tab.inactiveBackground": "#222222",
"tab.inactiveForeground": "#888888"
},
// Prettier extension
"editor.formatOnSave": false,
"prettier.eslintIntegration": true,
"prettier.printWidth": 140,
"prettier.tabWidth": 4,
"prettier.parser": "flow",
"prettier.singleQuote": true,
"prettier.trailingComma": "none",
"prettier.bracketSpacing": false,
"prettier.jsxBracketSameLine": true,
"prettier.semi": true,
"prettier.useTabs": true,
// References Codelens looks great, but a bit too noisy
"typescript.referencesCodeLens.enabled": false,
// File formats
"files.associations": {
"*.x3d": "xml",
"Vagrantfile": "ruby"
},
"git.confirmSync": false,
// PHP Linting
"php.validate.executablePath": "C:\\wamp64\\bin\\php\\php7.0.0\\php.exe"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment