Skip to content

Instantly share code, notes, and snippets.

@byurhannurula
Last active July 18, 2019 12:41
Show Gist options
  • Save byurhannurula/76e5f3b3f28e79351d796eab0cf9d744 to your computer and use it in GitHub Desktop.
Save byurhannurula/76e5f3b3f28e79351d796eab0cf9d744 to your computer and use it in GitHub Desktop.
VS Code Settings Gist
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+shift+a",
"command": "workbench.action.toggleActivityBarVisibility"
},
{
"key": "ctrl+shift+s",
"command": "workbench.action.toggleStatusbarVisibility"
}
]
{
// EDITOR
"editor.fontFamily": "Dank Mono, Operator Mono, Victor Mono, monospace",
"editor.fontWeight": "100",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.wordWrapColumn": 80,
"editor.glyphMargin": false,
"editor.tabCompletion": "on",
"editor.minimap.enabled": false,
"explorer.openEditors.visible": 0,
"workbench.statusBar.visible": false,
"workbench.activityBar.visible": true,
"workbench.tree.renderIndentGuides": "none",
// TERMINAL
"terminal.integrated.fontSize": 13,
"terminal.integrated.fontWeight": "100",
"terminal.integrated.fontFamily": "Menlo, monospace",
"terminal.integrated.shell.osx": "/usr/local/bin/fish",
"terminal.integrated.cursorBlinking": true,
// THEME
"workbench.iconTheme": "file-icons",
"workbench.colorTheme": "CodeSandbox",
// FILES
"files.autoSave": "onFocusChange",
"files.defaultLanguage": "html",
"files.associations": {
"*.html": "html",
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.tabSize": 2,
"editor.rulers": [80],
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.rulers": [80],
"editor.formatOnSave": false
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"nunjucks": "html"
},
"files.exclude": {
"**/.DS_Store": true,
"**/.cache": true,
"**/.git": true,
"**/.svn": true,
// "**/public": true,
"**/node_modules": true,
"**/bower_components": true
},
// ESLINT/PRETTIER
"prettier.disableLanguages": ["javascript", "javascriptreact"],
"eslint.packageManager": "yarn",
"eslint.autoFixOnSave": true,
// PLUGINS
"breadcrumbs.enabled": false,
"liveServer.settings.donotShowInfoMsg": true,
"javascript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment