Created
February 22, 2018 10:04
-
-
Save vittolewerissa/45a7f6d9fc902053ffc38ad6dbab2811 to your computer and use it in GitHub Desktop.
VS Code Settings
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
| { | |
| "atomKeymap.promptV3Features": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.formatOnPaste": true, | |
| "window.zoomLevel": 1, | |
| "prettier.singleQuote": true, | |
| "prettier.eslintIntegration": true, | |
| "prettier.bracketSpacing": false, | |
| "editor.renderWhitespace": "none", | |
| "editor.renderControlCharacters": false, | |
| "workbench.colorTheme": "One Dark Pro", | |
| "code-runner.executorMap": { | |
| "javascript": "babel-node --plugins transform-flow-strip-types" | |
| }, | |
| "javascript.validate.enable": false, | |
| "editor.fontFamily": "Source Code Pro", | |
| "relativePath.ignore": [ | |
| "**/node_modules/**", | |
| "**/*.dll", | |
| "**/obj/**", | |
| "**/objd/**", | |
| "**/db/**" | |
| ], | |
| "workbench.editor.enablePreview": false, | |
| "gitlens.blame.line.enabled": false, | |
| "gitlens.codeLens.locations": [ | |
| "containers" | |
| ], | |
| "workbench.panel.location": "bottom", | |
| "editor.stablePeek": true, | |
| "editor.scrollBeyondLastLine": false, | |
| "editor.mouseWheelScrollSensitivity": 0.5, | |
| "todohighlight.keywords": [ | |
| { | |
| "text": "TODO", | |
| "color": "#f9ae88", | |
| "isWholeLine": true, | |
| "backgroundColor": "transparent" | |
| } | |
| ], | |
| "workbench.sideBar.location": "right", | |
| "editor.fontSize": 13, | |
| "gitlens.advanced.messages": { | |
| "suppressCommitHasNoPreviousCommitWarning": false, | |
| "suppressCommitNotFoundWarning": false, | |
| "suppressFileNotUnderSourceControlWarning": false, | |
| "suppressGitVersionWarning": false, | |
| "suppressLineUncommittedWarning": false, | |
| "suppressNoRepositoryWarning": true, | |
| "suppressUpdateNotice": true, | |
| "suppressWelcomeNotice": true | |
| }, | |
| "editor.snippetSuggestions": "top", | |
| "workbench.iconTheme": "vscode-great-icons", | |
| "file_peek.activeLanguages": [ | |
| "javascript" | |
| ], | |
| "file_peek.searchFileExtensions": [ | |
| ".js", | |
| ".html", | |
| ".css", | |
| ".scss" | |
| ], | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact" | |
| }, | |
| "emmet.triggerExpansionOnTab": true, | |
| "editor.formatOnSave": true, | |
| "workbench.startupEditor": "welcomePage", | |
| "prettier.arrowParens": "always" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment