An open API service indexing awesome lists of open source software.

https://github.com/tiagoporto/vscode-settings

My VSCode settings and extensions.
https://github.com/tiagoporto/vscode-settings

customization extension settings vscode

Last synced: 19 days ago
JSON representation

My VSCode settings and extensions.

Awesome Lists containing this project

README

        

# vscode-settings

## Fonts

- [Haskig](https://github.com/i-tu/Hasklig)
- [Fira Code](https://github.com/tonsky/FiraCode)

## Extensions

> Mac users need to add command to PATH

Open the Command Palette `⇧⌘P` and type **shell command** to find the Shell Command: Install `code` or `code-insiders` command in PATH command.

### VSCode

#### Export
```
code --list-extensions > extensions.list
```

#### Import
```
cat extensions.list |% { code --install-extension $_}
```

### VSCode - Insiders

#### Export

```
code-insiders --list-extensions > extensions.list
```

#### Import

```
cat extensions.list |% { code-insiders --install-extension $_}
```