Last active
August 6, 2018 06:26
-
-
Save denislutz/83dd01ea7f5a5cdf57aeb7c2d6b4a472 to your computer and use it in GitHub Desktop.
Visual Code User Settings for a react and es6 focused development project
This file contains 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
{ | |
"workbench.colorTheme": "Solarized Light", | |
"window.zoomLevel": -1, | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"editor.minimap.enabled": false, | |
"files.autoSave": "afterDelay", | |
"git.enableSmartCommit": true, | |
"java.home": "/Library/Java/JavaVirtualMachines/jdk1.8.0_172.jdk/Contents/Home", | |
"maven.terminal.useJavaHome": false, | |
"editor.wordWrap": "on", | |
"gitlens.gitExplorer.files.layout": "list", | |
"editor.insertSpaces": false, | |
"editor.detectIndentation": false, | |
"workbench.activityBar.visible": true, | |
"gitlens.historyExplorer.enabled": true, | |
"git.confirmSync": false, | |
"eslint.autoFixOnSave": true, | |
"editor.formatOnSave": true, | |
"java.errors.incompleteClasspath.severity": "ignore", | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"workbench.iconTheme": "vscode-icons", | |
"vsicons.presets.hideFolders": true, | |
"vsicons.presets.jsOfficial": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"gitlens.mode.active": "zen", | |
"autoimport.semicolon": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment