Skip to content

Instantly share code, notes, and snippets.

@dearfrankg
Created January 23, 2019 16:46
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 dearfrankg/b533365d92d8237ef613302e5ed185a2 to your computer and use it in GitHub Desktop.
Save dearfrankg/b533365d92d8237ef613302e5ed185a2 to your computer and use it in GitHub Desktop.
vs-code config
{
// workbench
"window.zoomLevel": 1,
"workbench.colorTheme": "DesertEx",
"workbench.iconTheme": "vscode-icons",
"workbench.fontAliasing": "antialiased",
"workbench.startupEditor": "newUntitledFile",
"debug.toolBarLocation": "docked",
// file explorer
"explorer.openEditors.visible": 0,
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": true,
// editor
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.wordWrapColumn": 120,
"editor.rulers": [120],
// misc
"files.trimTrailingWhitespace": true,
"prettier.printWidth": 100,
"typescript.check.npmIsInstalled": false,
"rewrap.wrappingColumn": 80,
// sync
"sync.lastUpload": "2018-08-21T02:51:53.136Z",
"sync.lastDownload": "2018-02-17T08:04:30.124Z",
"sync.host": "",
"sync.pathPrefix": "",
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.forceDownload": false,
"sync.quietSync": true,
"sync.askGistName": false,
"sync.gist": "445d2d0140e0f7be16116c3bccdccf2c",
"sync.removeExtensions": true,
"sync.syncExtensions": true,
// emmet
"emmet.syntaxProfiles": {
"javascript": "jsx",
"xml": {
"attr_quotes": "single"
}
},
// markdown
"[markdown]": {
"editor.rulers": [120],
"editor.wordWrapColumn": 120,
"editor.tabSize": 4,
"editor.wordWrap": "wordWrapColumn",
"editor.quickSuggestions": false
},
"git.enableSmartCommit": true,
"gitlens.keymap": "chorded",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.historyExplorer.enabled": false,
"git.confirmSync": false,
"git.autofetch": true,
"breadcrumbs.enabled": true,
"breadcrumbs.symbolPath": "off",
"files.autoSave": "off",
"gitlens.views.fileHistory.enabled": false,
"gitlens.views.lineHistory.enabled": false,
"workbench.sideBar.location": "left",
"javascript.updateImportsOnFileMove.enabled": "always",
"debug.node.autoAttach": "on"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment