Untitled

 avatar
unknown
plain_text
3 years ago
6.2 kB
5
Indexable
{
  "telemetry.telemetryLevel": "off",
  "workbench.colorTheme": "Gruvbox Material Dark",
  "workbench.iconTheme": "material-icon-theme",
  "workbench.startupEditor": "newUntitledFile",
  "workbench.statusBar.visible": true,
  "workbench.activityBar.visible": true,
  // "editor.fontFamily": "'JetBrains Mono',, 'Iosevka Slab', 'Fira Code', Consolas, 'Courier New', monospace",
  "editor.fontFamily": "'Fira Code', 'Iosevka Slab', Consolas, 'Courier New', monospace",
  "editor.fontLigatures": true,
  "editor.fontSize": 20,
  "terminal.integrated.fontSize": 20,
  "editor.letterSpacing": 0.3,
  "editor.formatOnSave": true,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.tabSize": 2,
  "editor.renderWhitespace": "all",
  "editor.rulers": [80, 120],
  "editor.renderLineHighlight": "gutter",
  "explorer.confirmDragAndDrop": false,
  "explorer.confirmDelete": false,
  "git.ignoreMissingGitWarning": true,
  "emmet.includeLanguages": {
    "javascript": "javascriptreact",
    "rescript": "javascriptreact"
  },
  "files.associations": {
    "*.ex": "elixir",
    "*.exs": "elixir",
    "*.eex": "EEx",
    "*.html.eex": "eex"
  },
  "editor.accessibilitySupport": "off",
  "files.trimTrailingWhitespace": true,
  "editor.codeActionsOnSave": {
    "source.fixAll": true
  },
  "diffEditor.ignoreTrimWhitespace": false,
  "javascript.updateImportsOnFileMove.enabled": "never",
  "editor.wordWrap": "on",
  "files.autoSave": "off",
  "[go]": {
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
      "source.organizeImports": true
    },
    // Optional: Disable snippets, as they conflict with completion ranking.
    "editor.snippetSuggestions": "none"
  },
  "[go.mod]": {
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
      "source.organizeImports": true
    }
  },
  "jupyter.sendSelectionToInteractiveWindow": false,
  "git.confirmSync": false,
  "workbench.editorAssociations": {
    "*.ipynb": "jupyter.notebook.ipynb"
  },
  "jupyter.askForKernelRestart": false,
  "scss.validate": false,
  "editor.quickSuggestions": {
    "strings": true
  },
  "editor.autoClosingQuotes": "always",
  // "tailwindCSS.experimental.classRegex": [
  //   "tw`([^`]*)", // tw`...`
  //   "tw=\"([^\"]*)", // <div tw="..." />
  //   "tw={\"([^\"}]*)", // <div tw={"..."} />
  //   "tw\\.\\w+`([^`]*)", // tw.xxx`...`
  //   "tw\\(.*?\\)`([^`]*)" // tw(Component)`...`
  // ],
  "tailwindCSS.includeLanguages": {
    "typescript": "javascript",
    "typescriptreact": "javascript"
  },
  "workbench.editor.untitled.hint": "hidden",
  "security.workspace.trust.untrustedFiles": "open",
  "typescript.updateImportsOnFileMove.enabled": "always",
  "editor.inlineSuggest.enabled": true,
  "github.copilot.enable": {
    "*": false,
    "yaml": false,
    "plaintext": false,
    "markdown": false
  },
  "[rescript]": {
    "editor.defaultFormatter": "chenglou92.rescript-vscode"
  },
  "bracketPairColorizer.depreciation-notice": false,
  "gitlens.advanced.messages": {
    "suppressGitMissingWarning": true
  },
  "window.zoomLevel": -1
}
{
  "telemetry.telemetryLevel": "off",
  "workbench.colorTheme": "Gruvbox Material Dark",
  "workbench.iconTheme": "material-icon-theme",
  "workbench.startupEditor": "newUntitledFile",
  "workbench.statusBar.visible": true,
  "workbench.activityBar.visible": true,
  // "editor.fontFamily": "'JetBrains Mono',, 'Iosevka Slab', 'Fira Code', Consolas, 'Courier New', monospace",
  "editor.fontFamily": "'Fira Code', 'Iosevka Slab', Consolas, 'Courier New', monospace",
  "editor.fontLigatures": true,
  "editor.fontSize": 20,
  "terminal.integrated.fontSize": 20,
  "editor.letterSpacing": 0.3,
  "editor.formatOnSave": true,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.tabSize": 2,
  "editor.renderWhitespace": "all",
  "editor.rulers": [80, 120],
  "editor.renderLineHighlight": "gutter",
  "explorer.confirmDragAndDrop": false,
  "explorer.confirmDelete": false,
  "git.ignoreMissingGitWarning": true,
  "emmet.includeLanguages": {
    "javascript": "javascriptreact",
    "rescript": "javascriptreact"
  },
  "files.associations": {
    "*.ex": "elixir",
    "*.exs": "elixir",
    "*.eex": "EEx",
    "*.html.eex": "eex"
  },
  "editor.accessibilitySupport": "off",
  "files.trimTrailingWhitespace": true,
  "editor.codeActionsOnSave": {
    "source.fixAll": true
  },
  "diffEditor.ignoreTrimWhitespace": false,
  "javascript.updateImportsOnFileMove.enabled": "never",
  "editor.wordWrap": "on",
  "files.autoSave": "off",
  "[go]": {
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
      "source.organizeImports": true
    },
    // Optional: Disable snippets, as they conflict with completion ranking.
    "editor.snippetSuggestions": "none"
  },
  "[go.mod]": {
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
      "source.organizeImports": true
    }
  },
  "jupyter.sendSelectionToInteractiveWindow": false,
  "git.confirmSync": false,
  "workbench.editorAssociations": {
    "*.ipynb": "jupyter.notebook.ipynb"
  },
  "jupyter.askForKernelRestart": false,
  "scss.validate": false,
  "editor.quickSuggestions": {
    "strings": true
  },
  "editor.autoClosingQuotes": "always",
  // "tailwindCSS.experimental.classRegex": [
  //   "tw`([^`]*)", // tw`...`
  //   "tw=\"([^\"]*)", // <div tw="..." />
  //   "tw={\"([^\"}]*)", // <div tw={"..."} />
  //   "tw\\.\\w+`([^`]*)", // tw.xxx`...`
  //   "tw\\(.*?\\)`([^`]*)" // tw(Component)`...`
  // ],
  "tailwindCSS.includeLanguages": {
    "typescript": "javascript",
    "typescriptreact": "javascript"
  },
  "workbench.editor.untitled.hint": "hidden",
  "security.workspace.trust.untrustedFiles": "open",
  "typescript.updateImportsOnFileMove.enabled": "always",
  "editor.inlineSuggest.enabled": true,
  "github.copilot.enable": {
    "*": false,
    "yaml": false,
    "plaintext": false,
    "markdown": false
  },
  "[rescript]": {
    "editor.defaultFormatter": "chenglou92.rescript-vscode"
  },
  "bracketPairColorizer.depreciation-notice": false,
  "gitlens.advanced.messages": {
    "suppressGitMissingWarning": true
  },
  "window.zoomLevel": -1
}
Editor is loading...