Skip to content

Instantly share code, notes, and snippets.

@talves
Forked from EQuimper/settings.json
Last active March 4, 2017 17:53
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 talves/4ce2ea490060d18b98052d0c7f7a164e to your computer and use it in GitHub Desktop.
Save talves/4ce2ea490060d18b98052d0c7f7a164e to your computer and use it in GitHub Desktop.
This is a settings overwrite file for VS Code
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 16,
"editor.fontFamily": "Consolas",
"editor.tabSize": 2,
"editor.fontLigatures": true,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/.idea": true,
"**/android": true,
"**/ios": true,
"**/.vscode": true,
"**/yarn.lock": true,
"**/tmp": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": true,
"**/tmp": true
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
// "files.associations": {
// "*.js": "javascriptreact"
// },
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.git": true,
"**/.DS_Store": true,
"**/tmp": true
},
"files.trimTrailingWhitespace": true,
"html.suggest.html5": true,
"npm-intellisense.scanDevDependencies": true,
"stylelint.enable": true,
"typescript.check.tscVersion": false,
"window.zoomLevel": 0,
"terminal.external.osxExec": "iTerm.app",
"javascript.validate.enable": false,
"extensions.autoUpdate": true,
"terminal.integrated.fontFamily": "Consolas, 'Courier New', monospace",
"terminal.integrated.fontSize": 14,
"terminal.integrated.cursorBlinking": true,
"sync.gist": "",
"sync.lastUpload": "1970-01-01T00:00:00.000Z",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastDownload": "1970-01-01T00:00:00.000Z",
"sync.version": 243,
"sync.showSummary": true,
"sync.forceDownload": false,
"sync.workspaceSync": false,
"sync.anonymousGist": false,
"vsicons.projectDetection.disableDetect": true,
"vsicons.dontShowNewVersionMessage": true,
"fileHeaderCommentHelper.languageConfigs": {
"language_javascript": {
"template": [
"/**",
" * Project: $(projectName)",
" * File: $(currentFile)",
" * Author: Emanuel Quimper",
" */"
]
}
},
"workbench.welcome.enabled": false,
"workbench.colorTheme": "One Monokai",
"workbench.sideBar.location": "left"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment