📝 Made further notes on installing vscode ext
This commit is contained in:
parent
4b79991e20
commit
fb98cbd269
2 changed files with 26 additions and 0 deletions
|
|
@ -477,3 +477,7 @@ Install yad
|
|||
doas pacman -S yad
|
||||
Install obs-studio (video recording and streaming software)
|
||||
doas pacman -S obs-studio
|
||||
|
||||
03/20/2024
|
||||
Install vsce (vscode compiler for extensions not found in MS store, i.e. cloned from github)
|
||||
doas npm install -g vsce
|
||||
|
|
|
|||
|
|
@ -13,3 +13,25 @@ Markdown Preview Enhanced
|
|||
Prettier
|
||||
Vetur
|
||||
Vim
|
||||
|
||||
## How to Compile via vsce
|
||||
|
||||
clone the repo with the source code you want to use
|
||||
|
||||
```bash
|
||||
git clone https://github.com/extension_name
|
||||
```
|
||||
|
||||
Once in there, run npm install to make sure you have all dependencies:
|
||||
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
|
||||
Finally Use vsce to compile the .vsix file you'll need:
|
||||
|
||||
```bash
|
||||
vsce package
|
||||
```
|
||||
|
||||
And lastly use VSCode by hand to install from .vsix (found under the ... menu in the extensions submenu of vscode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue