- Path Intellisense
- ESLint
- TSLint
- Document This
- Gutter preview
Created
October 13, 2016 08:36
-
-
Save sebald/d0e093769aa23c9e1b6187b56ec74fb5 to your computer and use it in GitHub Desktop.
VSCode Seetings
This file contains hidden or 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
[ | |
{ "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" } | |
] |
This file contains hidden or 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 | |
{ | |
// "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