notes/vs_code_ext.txt
2024-03-20 00:13:01 -07:00

37 lines
1,014 B
Text

The following are some Codium Extensions that I like:
Beautify
Borealis Theme (install via .vsix file on vscodium)
Bracket Pair Colorizer
Cobalt2 Theme Official (blue borealis)
EsLint
GlassIt Linux (or GlassIt depending)
GlassIt Note: You'll need to edit the extensions.js file for it to work with VSCodium:
If you are using VS Codium, you need to edit the extension.js file in the extension folder: ~/.vscode-oss(OR .vscode)/extensions/s-nlf-fh.glassit-{THE VERSION}-universal/, and change "code" on line 46 to "codium".
Import Cost
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)