/vscode-settings

👨‍💻 My personal VS Code settings.

vscode-settings

Font

Themes

IntelliSense/AutoComplete

Style/Formatting

MISC

VS Code Settings

{
  "editor.tabSize": 2,
  "workbench.editor.pinnedTabSizing": "compact",
  "workbench.iconTheme": "material-icon-theme",
  "javascript.preferences.quoteStyle": "single",
  "editor.fontLigatures": true,
  "workbench.editor.highlightModifiedTabs": true,
  "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  "prettier.bracketSameLine": false,
  "prettier.singleQuote": true,
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[html]": {
    "editor.defaultFormatter": "vscode.html-language-features"
  },
  "editor.wordWrap": "bounded",
  "[json]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "files.autoSave": "off",

  "workbench.startupEditor": "newUntitledFile",
  "typescript.preferences.quoteStyle": "single",
  "extensions.confirmedUriHandlerExtensionIds": [],
  "typescript.suggest.paths": false,
  "git.enableSmartCommit": true,
  "git.autofetch": true,
  "git.defaultCloneDirectory": "",
  "githubPullRequests.remotes": [
    "origin",
    "upstream",
    "master",
    "development",
    "main"
  ],
  "workbench.colorTheme": "Halcyon",
  "telemetry.enableTelemetry": false,
  "telemetry.enableCrashReporter": false,
  "terminal.integrated.automationShell.windows": "",
  "workbench.colorCustomizations": {
    "[Halcyon]": {
      "terminal.ansiBlue": "#1f1876",
      "terminal.ansiRed": "#ffffff"
    }
  },
  "editor.linkedEditing": true,
  "editor.formatOnSave": true,
  "editor.tabCompletion": "onlySnippets",
  "prettier.vueIndentScriptAndStyle": true,
  "[vue]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "diffEditor.ignoreTrimWhitespace": true,
  "tailwindCSS.emmetCompletions": true,
  "editor.fontFamily": "Fira Code",
  "terminal.integrated.fontSize": 14,
  "javascript.updateImportsOnFileMove.enabled": "always",
  "window.zoomLevel": 1,
  "css.lint.unknownAtRules": "ignore",
  "less.lint.unknownAtRules": "ignore",
  "scss.lint.unknownAtRules": "ignore",
  "volar.inlayHints.eventArgumentInInlineHandlers": false,
  "editor.inlineSuggest.enabled": true
}