Skip to content

Instantly share code, notes, and snippets.

@Evavic44
Last active April 22, 2023 07:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Evavic44/789d63a74235a81aad9a9dbc2de5c5a0 to your computer and use it in GitHub Desktop.
Save Evavic44/789d63a74235a81aad9a9dbc2de5c5a0 to your computer and use it in GitHub Desktop.
{
  "workbench.colorTheme": "Darker than One Dark Pro",
  "editor.minimap.enabled": false,
  "liveServer.settings.donotShowInfoMsg": true,
  "liveServer.settings.donotVerifyTags": true,
  "vsicons.dontShowNewVersionMessage": true,
  "editor.suggestSelection": "first",
  "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  "workbench.startupEditor": "newUntitledFile",
  "gitlens.advanced.messages": {
    "suppressGitMissingWarning": true
  },
  "editor.renderControlCharacters": true,
  "editor.detectIndentation": false,
  "editor.tabSize": 2,
  "security.workspace.trust.untrustedFiles": "open",
  "explorer.confirmDelete": false,
  "gitlens.views.commits.showBranchComparison": false,
  "gitlens.views.commits.pullRequests.showForBranches": true,
  "gitlens.views.commits.pullRequests.enabled": true,
  "gitlens.views.showRelativeDateMarkers": false,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.formatOnPaste": true,
  "editor.formatOnType": true,
  "editor.formatOnSave": true,
  "workbench.iconTheme": "icons",
  "terminal.integrated.fontFamily": "Jetbrains Mono",
  "editor.fontFamily": "'Jetbrains Mono', 'Jetbrains Mono', 'Jetbrains Mono Light', 'Courier New', monospace",
  "terminal.integrated.fontSize": 13,
  "markdown.preview.fontFamily": "'Jetbrains Mono', 'Jetbrains Mono', 'Jetbrains Mono Light', 'Courier New', monospace",
  "editor.codeLensFontFamily": "'Jetbrains Mono', 'Jetbrains Mono', 'Jetbrains Mono Light', 'Courier New', monospace",
  "files.autoSave": "onFocusChange",
  "bracket-pair-colorizer-2.depreciation-notice": false,
  "editor.guides.bracketPairs": "active",
  "bracket-pair-colorizer-2.activeScopeCSS": [
    "borderStyle : solid",
    "borderWidth : 1px",
    "borderColor : {color}",
    "opacity: 0.5"
  ],
  "workbench.editorAssociations": {
    "*.rar": "default"
  },
  "markdown.experimental.validate.enabled": true,
  "svg.preview.mode": "svg",
  "javascript.updateImportsOnFileMove.enabled": "always",
  "terminal.integrated.defaultProfile.windows": "Git Bash",
  "workbench.editor.untitled.hint": "hidden",
  "editor.accessibilitySupport": "off",
  "git.confirmSync": false,
  "editor.guides.bracketPairsHorizontal": true,
  "editor.bracketPairColorization.enabled": true,
  "editor.guides.highlightActiveBracketPair": true,
  "editor.fontLigatures": false,
  "editor.fontWeight": "normal",
  "[python]": {
    "editor.formatOnType": true
  },
  "[svg]": {
    "editor.defaultFormatter": "jock.svg"
  },
  "javascript.inlayHints.functionLikeReturnTypes.enabled": true,
  "javascript.inlayHints.parameterTypes.enabled": true,
  "javascript.inlayHints.variableTypes.enabled": true,
  "javascript.inlayHints.propertyDeclarationTypes.enabled": true,
  // Requires better comments vscode extension
  "better-comments.tags": [
    {
      "tag": "!",
      "color": "#FF2D00",
      "strikethrough": false,
      "underline": false,
      "backgroundColor": "transparent",
      "bold": false,
      "italic": false
    },
    {
      "tag": "?",
      "color": "#3498DB",
      "strikethrough": false,
      "underline": false,
      "backgroundColor": "transparent",
      "bold": false,
      "italic": false
    },
    {
      "tag": "//",
      "color": "#474747",
      "strikethrough": true,
      "underline": false,
      "backgroundColor": "transparent",
      "bold": false,
      "italic": false
    },
    {
      "tag": "todo",
      "color": "#FF8C00",
      "strikethrough": false,
      "underline": false,
      "backgroundColor": "transparent",
      "bold": false,
      "italic": false
    },
    {
      "tag": "*",
      "color": "#98C379",
      "strikethrough": false,
      "underline": false,
      "backgroundColor": "transparent",
      "bold": false,
      "italic": false
    }
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment