Skip to content

Instantly share code, notes, and snippets.

@PeteGabriel
Created September 17, 2019 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PeteGabriel/6570337fb85f83278ce26ee93e517c3b to your computer and use it in GitHub Desktop.
Save PeteGabriel/6570337fb85f83278ce26ee93e517c3b to your computer and use it in GitHub Desktop.
VS Code JS settings
{
"workbench.activityBar.visible": true,
"editor.lineHeight": 0,
"files.autoSave": "onFocusChange",
"editor.fontLigatures": true,
"editor.smoothScrolling": true,
"editor.mouseWheelZoom": true,
"workbench.sideBar.location": "right",
"editor.autoClosingBrackets": "always",
"mocha.files.ignore": [
"**/.git/**/*",
"**/node_modules/**/*"
],
"mocha.files.glob": "mocha_test/src//**/*.js",
"redis-console.host": "localhost",
"redis-console.port": 6379,
"redis-console.password": "",
"redis-console.hostIpFamily": 4,
"editor.minimap.enabled": false,
"workbench.iconTheme": "vscode-great-icons",
"gitlens.views.repositories.location": "gitlens",
"gitlens.views.fileHistory.location": "gitlens",
"gitlens.views.lineHistory.location": "gitlens",
"gitlens.views.compare.location": "gitlens",
"gitlens.views.search.location": "gitlens",
"gitlens.currentLine.enabled": true,// in modern version
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"git.autofetch": true,
"editor.fontFamily": "Fira Code Regular, Droid Sans Mono SW",
"workbench.colorTheme": "Darcula",
"mochaExplorer.timeout": 5000,
"mochaExplorer.ui": "tdd",
"mochaExplorer.files": "mocha_test/**/*.js",
"mochaExplorer.env": {
"NODE_ENV": "development",
"NODE_REGION": "europe",
"NODE_DEBUG": "service:mysql"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment