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.
- Host: GitHub
- URL: https://github.com/tiagoporto/vscode-settings
- Owner: tiagoporto
- Created: 2019-02-25T14:12:13.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-03-20T05:06:56.000Z (about 1 year ago)
- Last Synced: 2025-02-10T06:30:38.477Z (2 months ago)
- Topics: customization, extension, settings, vscode
- Homepage:
- Size: 36.1 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 $_}
```