Created
April 16, 2019 08:27
-
-
Save malexsan1/53b6f5132fc694bb6b7ab3b0b6e33c91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"javascript.validate.enable": false, | |
"editor.fontFamily": "Operator Mono", | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"editor.fontSize": 16, | |
"editor.lineHeight": 21, | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": false | |
}, | |
"editor.cursorWidth": 2, | |
"editor.rulers": [80], | |
"editor.renderWhitespace": "boundary", | |
"editor.minimap.enabled": false, | |
"workbench.colorTheme": "Devoid", | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"keyword.operator", | |
"entity.name.type.class", | |
"support.class.component" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
}, | |
{ | |
"scope": [ | |
"support.function", | |
"keyword.operator.new", | |
"constant.language.boolean", | |
"entity.other.attribute-name", | |
"support.type", | |
"variable.parameter", | |
"storage.type" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
} | |
] | |
}, | |
"window.zoomLevel": 0, | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.shell.osx": "zsh", | |
"terminal.integrated.fontFamily": "Operator Mono, Hack Nerd Font", | |
"terminal.integrated.shellArgs.osx": ["-l"], | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/ios/**": true, | |
"**/android/**": true, | |
"**/automation": true | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/.DS_Store": true, | |
"__tests__": true, | |
".nyc_output": true, | |
".vscode": true, | |
".buckconfig": true, | |
".watchmanconfig": true, | |
"Gemfile.lock": true, | |
"jsconfig": true, | |
"certificates": true, | |
"SealJobsRecruiter.app.dSYM.zip": true, | |
"SealJobsRecruiter.ipa": true, | |
"Google Play Android Developer-e6d5f73074bb.json": true | |
}, | |
"prettier.trailingComma": "all", | |
"prettier.semi": false, | |
"prettier.singleQuote": true, | |
"prettier.tabWidth": 2, | |
"prettier.bracketSpacing": true, | |
"prettier.printWidth": 80, | |
"prettier.eslintIntegration": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"gitlens.heatmap.toggleMode": "window", | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressResultsExplorerNotice": false, | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"breadcrumbs.enabled": true, | |
"diffEditor.ignoreTrimWhitespace": true, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.cursorStyle": "underline", | |
"extensions.ignoreRecommendations": false, | |
"editor.cursorBlinking": "expand", | |
"gitlens.views.fileHistory.enabled": true, | |
"gitlens.views.lineHistory.enabled": true, | |
"workbench.fontAliasing": "antialiased", | |
"markdown.preview.fontFamily": "Operator Mono, Dank Mono", | |
"editor.fontLigatures": true, | |
"terminal.integrated.fontWeightBold": "100", | |
"terminal.integrated.fontWeight": "100", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.largeFileOptimizations": false | |
} | |
// Increase app behaviour at the point of no return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment