Last active
August 5, 2019 09:12
-
-
Save fedecarg/4ce01438b593d4f5d22bd2b220fc9571 to your computer and use it in GitHub Desktop.
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
{ | |
"code-runner.executorMap": { | |
"javascript": "node" | |
}, | |
"code-runner.executorMapByGlob": { | |
"*.js": "node" | |
}, | |
"editor.detectIndentation": false, | |
"editor.fontFamily": "Menlo", | |
"editor.fontSize": 12, | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"editor.renderControlCharacters": false, | |
"editor.renderLineHighlight": "none", | |
"editor.renderWhitespace": "none", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.openEditors.visible": 0, | |
"files.trimTrailingWhitespace": true, | |
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
"javascript.format.insertSpaceBeforeFunctionParenthesis": false, | |
"javascript.validate.enable": false, | |
"npm.enableScriptExplorer": true, | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"window.title": "${activeEditorLong}${separator}${rootName}", | |
"workbench.activityBar.visible": true, | |
"workbench.colorCustomizations": { | |
"activityBar.background": "#111", | |
"activityBarBadge.background": "#007ACC", | |
"debugToolBar.background": "#111", | |
"editor.background": "#1E1E1E", | |
"editor.foreground": "#D4D4D4", | |
"editor.inactiveSelectionBackground": "#3A3D41", | |
"editor.selectionHighlightBackground": "#ADD6FF26", | |
"editorIndentGuide.activeBackground": "#383838", | |
"editorIndentGuide.background": "#272727", | |
"input.placeholderForeground": "#A6A6A6", | |
"list.dropBackground": "#383B3D", | |
"menu.background": "#252526", | |
"menu.foreground": "#CCCCCC", | |
"panel.background": "#111", | |
"settings.numberInputBackground": "#292929", | |
"settings.textInputBackground": "#292929", | |
"sideBar.background": "#111", | |
"sideBarTitle.foreground": "#BBBBBB", | |
"statusBar.background": "#111", | |
"statusBar.foreground": "#eee", | |
"statusBar.noFolderBackground": "#111", | |
"terminal.background": "#111", | |
"titleBar.activeBackground": "#111", | |
"titleBar.activeForeground": "#eee" | |
}, | |
"workbench.iconTheme": null, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"debug.node.autoAttach": "on", | |
"files.associations": { | |
"*.js": "javascriptreact" | |
}, | |
"workbench.colorTheme": "React Theme", | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment