Skip to content

Instantly share code, notes, and snippets.

@JadTermsani
Last active January 9, 2020 10:04
Show Gist options
  • Save JadTermsani/eb6579b695e22b855785c0b51d66ee54 to your computer and use it in GitHub Desktop.
Save JadTermsani/eb6579b695e22b855785c0b51d66ee54 to your computer and use it in GitHub Desktop.
VS Code Settings
{
  // bash terminal
  "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  // Powershell terminal
  "terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  "terminal.integrated.fontFamily": "'DejaVu Sans Mono for Powerline', 'Courier New', monospace",
  "terminal.integrated.fontSize": 14,
  "terminal.integrated.lineHeight": 1.1,
  "terminal.integrated.fontWeight": "300",
  "editor.fontSize": 16,
  "files.eol": "\n",
  "javascript.validate.enable": false,
  "files.insertFinalNewline": true,
  "files.autoSave": "off",
  "workbench.startupEditor": "newUntitledFile",
  "window.zoomLevel": 0,
  "explorer.confirmDragAndDrop": false,
  "prettier.eslintIntegration": true,
  "eslint.run": "onSave",
  "eslint.autoFixOnSave": true,
  "workbench.iconTheme": "material-icon-theme",
  "workbench.colorTheme": "One Dark Pro",
  "workbench.colorCustomizations": {
    "editor.background": "#000000",
    "sideBar.background": "#000000",
    "sideBarSectionHeader.background": "#000000",
    "activityBar.background": "#000000",
    "editorGroupHeader.tabsBackground": "#000000",
    "tab.activeBackground": "#3b4e5e",
    "editorIndentGuide.activeBackground": "#006600"
  },
  "gitlens.keymap": "chorded",
  "material-icon-theme.showUpdateMessage": false,
  "gitlens.advanced.messages": {
    "suppressCommitHasNoPreviousCommitWarning": false,
    "suppressCommitNotFoundWarning": false,
    "suppressFileNotUnderSourceControlWarning": false,
    "suppressGitVersionWarning": false,
    "suppressLineUncommittedWarning": false,
    "suppressNoRepositoryWarning": false,
    "suppressResultsExplorerNotice": false,
    "suppressShowKeyBindingsNotice": true
  },
  "breadcrumbs.enabled": true,
  "javascript.updateImportsOnFileMove.enabled": "always",
  "editor.smoothScrolling": true,
  "editor.cursorBlinking": "phase",
  "prettier.singleQuote": true,
  "gitlens.views.fileHistory.enabled": true,
  "gitlens.views.lineHistory.enabled": true,
  "editor.formatOnSave": true,
  "typescript.updateImportsOnFileMove.enabled": "always",
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact"
  ],
  "explorer.confirmDelete": false,
  "editor.largeFileOptimizations": false,
  "[javascriptreact]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment