Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ac/pm 14415/add vs code extension cli option #468

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions docs/getting-started/tools/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,41 @@ recommended ones include the following:
- [PostgreSQL](https://marketplace.visualstudio.com/items?itemName=ckolkman.vscode-postgres) -
syntax highlighting for PostgreSQL

#### CLI Installation

```bash
# General
code --install-extension nick-rudenko.back-n-forth
code --install-extension streetsidesoftware.code-spell-checker
code --install-extension ms-vsliveshare.vsliveshare

# C#
code --install-extension ms-dotnettools.csharp
code --install-extension formulahendry.dotnet-test-explorer
code --install-extension adrianwilczynski.user-secrets

# Git
code --install-extension mhutchie.git-graph
code --install-extension donjayamanne.githistory
code --install-extension eamodio.gitlens

# TypeScript / Angular
code --install-extension angular.ng-template
code --install-extension orta.vscode-jest
code --install-extension esbenp.prettier-vscode
code --install-extension dbaeumer.vscode-eslint

# Rust
code --install-extension rust-lang.rust-analyzer
code --install-extension tamasfe.even-better-toml
code --install-extension vadimcn.vscode-lldb

# Databases
code --install-extension jakebathman.mysql-syntax
code --install-extension ckolkman.vscode-postgres

```

## Optional tools

The following tools may be useful depending on your preferences or what youโ€™re developing.
Expand Down