Skip to content

Instantly share code, notes, and snippets.

@divyanshu013
Last active May 21, 2020 02:18
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save divyanshu013/58f248bce84bb1c11381a50e9cd582b2 to your computer and use it in GitHub Desktop.
Save divyanshu013/58f248bce84bb1c11381a50e9cd582b2 to your computer and use it in GitHub Desktop.
My VSCode settings
{
"vscode_custom_css.imports": [
"file:///Users/divyanshu/.vscode/style.css"
],
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"javascript.validate.enable": false,
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"workbench.startupEditor": "newUntitledFile",
"editor.lineHeight": 28, // or 24
"prettier.eslintIntegration": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"workbench.colorTheme": "Oceanic Darker",
"terminal.integrated.shell.osx": "/bin/zsh",
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#1f2224"
},
"terminal.integrated.fontSize": 14,
"files.useExperimentalFileWatcher": true,
"files.exclude": {
"/.git": true,
"/.DS_Store": true,
"/node_modules": true,
"/node_modules/": true
},
"search.exclude": {
"/android": true,
"/ios": true,
"/node_modules": true
},
"files.watcherExclude": {
"/android/": true,
"/ios/": true,
"/node_modules/": true
},
"files.insertFinalNewline": true,
"material-icon-theme.showUpdateMessage": false,
"terminal.integrated.cursorStyle": "line",
"workbench.activityBar.visible": false,
"explorer.confirmDragAndDrop": false,
"editor.fontSize": 14,
"workbench.sideBar.location": "left",
"workbench.statusBar.visible": true,
"breadcrumbs.enabled": false,
"terminal.integrated.shell.linux": "/bin/zsh",
"explorer.confirmDelete": false,
"python.linting.flake8Enabled": true,
"typescript.suggest.autoImports": false,
"flow.pathToFlow": "${workspaceRoot}/node_modules/.bin/flow",
"terminal.integrated.rendererType": "dom",
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment