https://github.com/toxblh/vscode-package
๐ฆ My vscode packages for development
https://github.com/toxblh/vscode-package
Last synced: 5 months ago
JSON representation
๐ฆ My vscode packages for development
- Host: GitHub
- URL: https://github.com/toxblh/vscode-package
- Owner: Toxblh
- License: mit
- Created: 2017-08-16T19:34:11.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-05-28T17:41:09.000Z (about 6 years ago)
- Last Synced: 2025-04-24T00:38:04.085Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 24.4 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

## How to install packages and settings vscode for MacOS, Linux and Windows:
### First step. Add command `code` in your system if don't do that before
* Launch VS Code.
* Open the **Command Palette** (โงโP) and type 'shell command' to find the **Shell Command: Install 'code' command in PATH** command.

* Restart the terminal for the new `$PATH` value to take effect. You'll be able to type 'code .' in any folder to start editing files in that folder.
>**Note:** If you still have the old `code` alias in your `.bash_profile` (or equivalent) from an early VS Code version, remove it and replace it by executing the **Shell Command: Install 'code' command in PATH** command.
To manually add VS Code to your path on MacOS:
```bash
cat << EOF >> ~/.bash_profile
# Add Visual Studio Code (code)
export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
EOF
```
Manually on Windows, VS Code is installed under `AppData\Local\Programs\Microsoft VS Code\bin` to PATH environment variables
### Second step. Install packages and settings
* Add in you system the font https://github.com/tonsky/FiraCode
* Or Nerd analog for full font with powerline https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/FiraCode
* `git clone https://github.com/Toxblh/vscode-package.git`
* `cd vscode-package`
* `./restore.sh`
## How to backup:
* Install Shell command in vscode
* `./backup.sh`
## Same for Windows:
* For restore use `.\restore.bat`
* For backup use `.\backup.bat`
License MIT