Skip to content

Instantly share code, notes, and snippets.

@millerdrew
Last active January 7, 2019 13:33
Show Gist options
  • Save millerdrew/b0b61eb29752a48fc555322292a3ef98 to your computer and use it in GitHub Desktop.
Save millerdrew/b0b61eb29752a48fc555322292a3ef98 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"window.zoomLevel": 0,
"workbench.colorTheme": "Night Owl",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
// Set the default
// "editor.formatOnSave": true,
"workbench.iconTheme": "vscode-icons",
"gitlens.advanced.messages": {
"suppressCommitNotFoundWarning": true,
"suppressShowKeyBindingsNotice": true
},
"editor.fontSize": 20,
"editor.tabSize": 2,
"prettier.eslintIntegration": false,
"editor.formatOnSave": false,
"prettier.printWidth": 120,
"prettier.tabWidth": 2,
"prettier.singleQuote": true,
"prettier.trailingComma": "none",
"prettier.bracketSpacing": true,
"prettier.parser": "flow",
"prettier.semi": true,
"prettier.useTabs": false,
"diffEditor.ignoreTrimWhitespace": false,
"workbench.activityBar.visible": true,
"files.associations": {
"*.js": "javascript"
},
"breadcrumbs.enabled": true,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.snippetSuggestions": "top",
"editor.tabCompletion": "on",
"vsicons.projectDetection.disableDetect": true,
"workbench.editor.showTabs": true,
"workbench.statusBar.visible": true,
"vim.scroll": 1,
"window.newWindowDimensions": "maximized",
"html.suggest.angular1": true,
"php.suggest.basic": false,
"javascript.suggest.completeFunctionCalls": true,
"typescript.suggest.completeFunctionCalls": true,
"debug.toolBarLocation": "docked",
"zenMode.centerLayout": false,
"zenMode.hideStatusBar": false,
"todo-tree.defaultHighlight": {
"foreground": "green",
"type": "none"
},
"todo-tree.customHighlight": {
"TODO": {},
"FIXME": {}
},
"workbench.sideBar.location": "right",
"editor.minimap.enabled": false,
"files.exclude": {
"**/.*": true,
"dist/": true,
"fixtures/": true,
"karma/": true
},
"search.exclude": {
"**/coverage": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment