Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@franklinjavier
Last active November 13, 2017 12:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save franklinjavier/4ba25ac8d779d0108efbb31e66f2378e to your computer and use it in GitHub Desktop.
Save franklinjavier/4ba25ac8d779d0108efbb31e66f2378e to your computer and use it in GitHub Desktop.
  • cmd+k z -> zen mode
  • cmd+\ -> side-by-side
  • cmd+b -> toggle sidebar
  • cmd+shift+m -> problems panel
  • ctrl+j -> join line
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/server/bin/www"
},
{
"type": "chrome",
"request": "launch",
"name": "Chrome",
"url": "http://belezanaweb.local:4004",
"webRoot": "${workspaceRoot}/src"
}
]
}
// Place your settings in this file to overwrite the default settings
{
"files.exclude": {
"dist": true,
"node_modules": true,
".vscode": true,
".github": true,
"yarn.lock": true,
"settings.json": true,
"coverage*/**": true,
"coverage-agular": true
},
"workbench.colorTheme": "Oceanic Plus",
"search.useIgnoreFiles": true,
"search.useIgnoreFilesByDefault": true,
"workbench.fontAliasing": "antialiased",
"workbench.startupEditor": "none",
"workbench.colorCustomizations": {
"editor.background": "#1e2426",
"sideBar.background": "#1e2426",
"tab.inactiveBackground": "#1e2426",
"activityBar.background": "#000",
"activityBarBadge.background": "#466168",
"editorGroupHeader.tabsBackground": "#1e2426",
"editor.selectionBackground": "#008ecf80",
"debugToolBar.background": "#000000"
},
"editor.tabCompletion": true,
"editor.minimap.enabled": false,
"editor.formatOnPaste": true,
"debug.allowBreakpointsEverywhere": true,
"debug.inlineValues": true,
"prettier.singleQuote": true,
"prettier.semi": false,
"prettier.eslintIntegration": true,
"window.zoomLevel": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment