Skip to content

Instantly share code, notes, and snippets.

@RajaJaganathan
Created August 16, 2017 12:50
Show Gist options
  • Save RajaJaganathan/3c4a753317f15044e0faafcc86ac99a1 to your computer and use it in GitHub Desktop.
Save RajaJaganathan/3c4a753317f15044e0faafcc86ac99a1 to your computer and use it in GitHub Desktop.
Visual Studio Code Favorite Settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Menlo, Consolas, Monaco, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.tabSize": 2,
"files.exclude": {
"**/.git": true,
"**/dist": false,
"**/coverage": false,
"**/.DS_Store": true,
"**/node_modules/": false,
"**/build/": false,
"**/.npm/": false
},
"search.exclude": {
"**/.git/": true,
"**/node_modules/": true,
"**/bower_components/": true,
"**/build/": true,
"**/coverage/": true,
"**/target/": true,
"**/.npm/": true,
"**/tmp/": true
},
"eslint.enable": true,
"prettier.singleQuote": true,
"window.zoomLevel": 0,
"files.autoSave": "off",
"editor.cursorStyle": "line",
"editor.minimap.enabled": true,
"workbench.activityBar.visible": true,
"workbench.editor.enablePreview": false,
"editor.dragAndDrop": true,
"workbench.editor.enablePreviewFromQuickOpen": true,
"html.format.wrapAttributes": "auto",
"workbench.iconTheme": "vscode-icons",
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"cSpell.userWords": [
"Aboutus",
"FAVORITED",
"Favorited",
"fxdatatable",
"plltCtrl",
"talendId",
"talentview"
],
"editor.autoIndent": true,
"emmet.useNewEmmet": true,
"cSpell.enabledLanguageIds": [
"c",
"cpp",
"csharp",
"go",
"javascript",
"javascriptreact",
"json",
"latex",
"markdown",
"php",
"plaintext",
"python",
"text",
"todo",
"typescript",
"typescriptreact",
"yml"
],
"files.associations": {
"*.jsx": "javascriptreact"
},
"diffEditor.ignoreTrimWhitespace": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment