Skip to content

Instantly share code, notes, and snippets.

@Ibochkarev
Created August 13, 2020 18:16
Show Gist options
  • Save Ibochkarev/73c0bdb7005d8187c6deee7abeb196bf to your computer and use it in GitHub Desktop.
Save Ibochkarev/73c0bdb7005d8187c6deee7abeb196bf to your computer and use it in GitHub Desktop.
{
  "workbench.colorTheme": "GitHub Sharp Dark",
  "git.autofetch": true,
  "workbench.iconTheme": "material-icon-theme",
  "emmet.triggerExpansionOnTab": true,
  "editor.formatOnSave": true,
  "editor.renderIndentGuides": true,
  "git.confirmSync": false,
  "explorer.confirmDelete": false,
  "git.enableSmartCommit": true,
  "editor.fontSize": 13,
  "editor.tabSize": 2,
  "workbench.tree.indent": 2,
  "editor.minimap.enabled": false,
  "files.associations": {
    "*.tpl ": "smarty",
    "*.phtml ": "smarty",
    "*.twig": "smarty"
  },
  "workbench.startupEditor": "none",
  "explorer.confirmDragAndDrop": false,
  "gitlens.advanced.messages": {
    "suppressLineUncommittedWarning": true
  },
  "editor.fontFamily": "JetBrains Mono",
  "editor.fontLigatures": true,
  "terminal.integrated.rendererType": "dom",
  "diffEditor.ignoreTrimWhitespace": false,
  "typescript.updateImportsOnFileMove.enabled": "always",
  "editor.wordWrap": "on",
  "editor.renderControlCharacters": true,
  "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
  "editor.largeFileOptimizations": false,
  "emmet.includeLanguages": {
    "javascript": "javascriptreact"
  },
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "prettier.jsxBracketSameLine": true,
  "better-comments.multilineComments": true,
  "better-comments.tags": [
    {
      "tag": "!",
      "color": "#FF2D00",
      "strikethrough": false,
      "backgroundColor": "transparent"
    },
    {
      "tag": "?",
      "color": "#3498DB",
      "strikethrough": false,
      "backgroundColor": "transparent"
    },
    {
      "tag": "//",
      "color": "#474747",
      "strikethrough": true,
      "backgroundColor": "transparent"
    },
    {
      "tag": "todo",
      "color": "#FF8C00",
      "strikethrough": false,
      "backgroundColor": "transparent"
    },
    {
      "tag": "*",
      "color": "#98C379",
      "strikethrough": false,
      "backgroundColor": "transparent"
    }
  ],
  "javascript.updateImportsOnFileMove.enabled": "always",
  "prettier.packageManager": "yarn",
  "prettier.trailingComma": "es5",
  "liveServer.settings.donotShowInfoMsg": true,
  "prettier.singleQuote": true,
  "prettier.jsxSingleQuote": true,
  "editor.renameOnType": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment