VS Code Setup - Recommended Extensions

VS Code Setup - Recommended Extensions

firaflash

This is a list of Visual Studio Code extensions that I recommend.

Table of Contents

  • Markdown Related Extensions
  • Writing (in General) Related Extensions
  • GitHub Related Extensions
  • CSV Related Extensions
  • Japanese Language Related Extensions
  • Styling and Themes Related Extensions
  • Utility Extensions
  • Easy Installation Methodextensions.json


Here is the content rewritten in a formal format without tables:





  • CSV to Table: Convert a CSV/TSV/PSV file to an ASCII formatted table.
  • Rainbow CSV: Makes it easier to read and edit CSV and TSV files.



Utility Extensions

  • ARB Editor: Editor for Application Resource Bundle files used for localization.
  • Code Runner: Run Python and JavaScript code locally for quick checks.
  • ESLint: Integrates ESLint JavaScript into VS Code.
  • File Utils: A convenient way of creating, duplicating, moving, renaming, and deleting files and directories.
  • HTML Snippets: Full HTML tags including HTML5 snippets.
  • IntelliSense for CSS class names in HTML: CSS class name completion for the HTML class attribute based on the definitions found in your workspace.
  • Live Server: Launch a local development server with live reload feature for static & dynamic pages. Perfect when working on HTML.
  • Open in Finder: Adds commands for opening the current file or project in Finder.
  • Prettier - Code Formatter: Code formatter using Prettier.
  • Trailing Spaces: Highlights trailing spaces and allows for a simple "delete all trailing spaces" command.
  • YAML: YAML language support by Red Hat, with built-in Kubernetes syntax support.

Easy Installation Method

You can install all the recommended extensions easily by creating an extensions.json file in your .vscode directory and following these steps:

Easy Installation Method

You can install all the recommended extensions easily by creating an extensions.json file in your .vscode directory and following these steps:

  1. Open the VS Code project where you want to install the recommended extensions.
  2. Open the command palettemacOS: Cmd+Shift+P
  3. Windows/Linux: Ctrl+Shift+P
  4. Type and select Configure Recommended Extensions (Workspace Folder).
  5. Copy and paste the contents of the extensions.json file below into your extensions.json file.
  6. Type and select Extensions: Show Recommended Extensions in the command palette.

extensions.json

json
{
  "recommendations": [
    "Google.arb-editor",
    "danielgjackson.auto-dark-mode-windows",
    "viablelab.capitalize",
    "wmaurer.change-case",
    "formulahendry.code-runner",
    "streetsidesoftware.code-spell-checker",
    "GitHub.copilot-chat",
    "GitHub.copilot",
    "jerriepelser.copy-markdown-as-html",
    "phplasma.csv-to-table",
    "jianbingfang.dupchecker",
    "bierner.emojisense",
    "ginfuru.ginfuru-better-solarized-dark-theme",
    "bierner.github-markdown-preview",
    "wengerk.highlight-bad-chars",
    "abusaidm.html-snippets",
    "Zignd.html-css-class-completion",
    "andersliu.insert-line-number",
    "ICS.japanese-proofreading",
    "sifue.japanese-word-count",
    "ritwickdey.LiveServer",
    "bierner.markdown-footnotes",
    "shd101wyy.markdown-preview-enhanced",
    "yzane.markdown-pdf",
    "yzhang.markdown-all-in-one",
    "PKief.material-icon-theme",
    "possan.nbsp-vscode",
    "wraith13.open-in-github-desktop",
    "christian-kohler.path-intellisense",
    "esbenp.prettier-vscode",
    "mechatroner.rainbow-csv",
    "jinhyuk.replace-curly-quotes",
    "Tyriar.sort-lines",
    "shardulm94.trailing-spaces",
    "davidanson.vscode-markdownlint",
    "dbaeumer.vscode-eslint",
    "fabiospampinato.vscode-open-in-finder",
    "mushan.vscode-paste-image",
    "redhat.vscode-yaml",
    "sleistner.vscode-fileutils",
    "telesoho.vscode-markdown-paste-image",
    "unifiedjs.vscode-mdx",
    "wayou.vscode-todo-highlight",
    "mosapride.zenkaku"
  ]
}


Report Page