Skip to content

Commit

Permalink
Merge pull request flashreads#155 from gfda/add-other-gfda
Browse files Browse the repository at this point in the history
Add other article vscode plugins
  • Loading branch information
ZoranPandovski authored Oct 12, 2021
2 parents ca953f4 + 9e1a041 commit 9ddd8cd
Showing 1 changed file with 119 additions and 0 deletions.
119 changes: 119 additions & 0 deletions other/006-plugins-vscode.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
---
id: 006-plugins-vscode
title: Useful Plugins to VS Code
tags:
- IDE
- VScode
- Plugin
date: 2021-09-03 21:53:39 +0200
keywords: IDE, VScode, Plugin
categories:
- other
cover: ../../images/categories/other.png
author: gfda
meta-description: Some useful plugins/extensions for VSCode IDE.
---

# Useful plugins to VS Code

Some useful plugins/extensions for VSCode IDE.

## Tip

To install the plugins quickly, launch VS Code Quick Open (Ctrl + P), paste the command and press Enter.

```shell
ext install <plugin>
```

## Extensions

### Generic

* [Beautify - HookyQR](https://marketplace.visualstudio.com/items?itemName=hookyqr.beautify) - Beautify code in place for VS Code.

```shell
ext install HookyQR.beautify
```

* [Code Runner - Jun Han](https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner) - Run code snippet or code file for multiple languages.

```shell
ext install formulahendry.code-runner
```

* [CodeMetrics - Kiss Tamás](https://marketplace.visualstudio.com/items?itemName=kisstkondoros.vscode-codemetrics) - Computes complexity in TypeScript / JavaScript / Lua files.

```shell
ext install kisstkondoros.vscode-codemetrics
```

* [ESLint - Dirk Baeumer](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) - Integrates ESLint JavaScript into VS Code.

```shell
ext install dbaeumer.vscode-eslint
```

* [GitLens - Eric Amodio](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens) - Supercharge the Git capabilities built into Visual Studio Code.

```shell
ext install eamodio.gitlens
```

* [vscode-icons - VSCode Icons Team](https://marketplace.visualstudio.com/items?itemName=vscode-icons-team.vscode-icons) - Icons for Visual Studio Code.

```shell
ext install vscode-icons-team.vscode-icons
```

### For specific languages

#### Python

* [Jupyter - Microsoft](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter) - Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.

```shell
ext install ms-toolsai.jupyter
```

* [Pylance - Microsoft](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance) - A performant, feature-rich language server for Python in VS Code.

```shell
ext install ms-python.vscode-pylance
```

* [Python - Microsoft](https://marketplace.visualstudio.com/items?itemName=ms-python.python) - IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), Jupyter Notebooks, code formatting, refactoring, unit tests, and more.

```shell
ext install ms-python.python
```

#### SQL

* [SQLite - alexcvzz](https://marketplace.visualstudio.com/items?itemName=alexcvzz.vscode-sqlite) - Explore and query SQLite databases.

```shell
ext install alexcvzz.vscode-sqlite
```

#### Markdown

* [markdownlint - David Anson](https://marketplace.visualstudio.com/items?itemName=davidanson.vscode-markdownlint) - Markdown linting and style checking for Visual Studio Code.

```shell
ext install DavidAnson.vscode-markdownlint
```

## Themes

* [Dracula Official - Dracula Theme](https://marketplace.visualstudio.com/items?itemName=dracula-theme.theme-dracula) - Official Dracula Theme. A dark theme for many editors, shells, and more.

```shell
ext install dracula-theme.theme-dracula
```

* [Omni Theme - RocketSeat](https://marketplace.visualstudio.com/items?itemName=rocketseat.theme-omni) - A dark theme made by Rocketseat.

```shell
ext install rocketseat.theme-omni
```

0 comments on commit 9ddd8cd

Please sign in to comment.