Skip to content

Instantly share code, notes, and snippets.

@sebald
Created October 13, 2016 08:36
Show Gist options
  • Save sebald/d0e093769aa23c9e1b6187b56ec74fb5 to your computer and use it in GitHub Desktop.
Save sebald/d0e093769aa23c9e1b6187b56ec74fb5 to your computer and use it in GitHub Desktop.
VSCode Seetings
  • Path Intellisense
  • ESLint
  • TSLint
  • Document This
  • Gutter preview
[
{ "key": "cmd+\\", "command": "editor.action.commentLine", "when": "editorTextFocus" },
{ "key": "cmd+s", "command": "workbench.action.files.saveAll" },
{ "key": "cmd+]", "command": "workbench.action.zoomIn" },
{ "key": "cmd+/", "command": "workbench.action.zoomOut" }
]
// Place your settings in this file to overwrite the default settings
{
// "editor.fontFamily": "Hack",
"editor.fontFamily": "Fira Code",
// "editor.fontFamily": "Hasklig",
// "editor.fontFamily": "Monoid",
"editor.fontLigatures": true,
"editor.fontSize": 15,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.wrappingColumn": 140,
"editor.renderWhitespace": "boundary",
"editor.lineHeight": 20,
"editor.folding": false,
"editor.trimAutoWhitespace": true,
"files.trimTrailingWhitespace": true,
"explorer.workingFiles.maxVisible": 10,
"explorer.openEditors.visible": 0,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/.nyc_output": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/coverage": true,
"**/dist": true,
"**/build": true,
"**/build_spec": true,
"**/executables": true
},
// "http.proxy": "http://192.168.20.25:8080",
// "http.proxyStrictSSL": true,
"git.autofetch": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment