Skip to content

Instantly share code, notes, and snippets.

@labiak
Forked from kissarat/vscode-settings.json
Last active February 6, 2019 09:44
Show Gist options
  • Save labiak/4b34699b3ec494b84d0c56b2720ee887 to your computer and use it in GitHub Desktop.
Save labiak/4b34699b3ec494b84d0c56b2720ee887 to your computer and use it in GitHub Desktop.
{
"docker.attachShellCommand.linuxContainer": "/bin/bash",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 13,
"editor.formatOnSave": false,
"editor.insertSpaces": true,
"editor.rulers": [100],
"editor.tabSize": 2,
"emmet.excludeLanguages": ["markdown"],
"eslint.enable": true,
"files.autoSave": "off",
"files.encoding": "utf8",
"files.eol": "\n",
"files.exclude": {
"__MACOSX": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true
},
"files.insertFinalNewline": true,
"files.maxMemoryForLargeFilesMB": 4,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true
},
"prettier.eslintIntegration": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"window.title": "${activeEditorLong}${separator}${rootName}",
"workbench.colorTheme": "Darcula Theme from IntelliJ",
"workbench.iconTheme": "material-icon-theme"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment