cmd+k z
-> zen modecmd+\
-> side-by-sidecmd+b
-> toggle sidebarcmd+shift+m
-> problems panelctrl+j
-> join line
Last active
November 13, 2017 12:28
-
-
Save franklinjavier/4ba25ac8d779d0108efbb31e66f2378e 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
{ | |
// 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" | |
} | |
] | |
} |
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
// 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