From 472eded37f6971a2eb2ed2bf06876755ea1cddb9 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Thu, 6 Jun 2024 17:58:28 -0700 Subject: [PATCH] :memo: Adjusted vs code extension notes --- vs_code_ext.md | 66 +++++++++++++++++++++++++++++++++++++++++++++++++ vs_code_ext.txt | 37 --------------------------- 2 files changed, 66 insertions(+), 37 deletions(-) create mode 100644 vs_code_ext.md delete mode 100644 vs_code_ext.txt diff --git a/vs_code_ext.md b/vs_code_ext.md new file mode 100644 index 00000000..69bbc1d2 --- /dev/null +++ b/vs_code_ext.md @@ -0,0 +1,66 @@ +# VS Codium Extensions + +**Themes/Aesthetics:** + +- Beautify +- Borealis Theme (install via .vsix file on vscodium) +- Cobalt2 Theme Official (blue borealis) +- Cursor Column Highlight +- GlassIt Linux (or GlassIt depending) +- Nord Deep +- multi-command +- Render Line Endings + +**Extensions:** + +- EsLint +- Biome +- Prettier +- Live Server +- Quick-Lint-Js +- Bracket Pair Colorizer 2 +- Import Cost +- Markdown Preview Enhanced +- Vim + +**Language Servers:** + +- HTML CSS Support +- Python (ms-python) +- Python Debugger (ms-python) +- Go (golang) +- React - Typeescript snippets (XAcademy) +- Rust (rust-lang) +- ShellCheck +- Svelte for VS Code (svelte) +- TypeScript Vue Plugin (Volar) +- Vue - Official +- Vue Language Features (Volar) (conflicts with Vue - Official) +- YAML (redhat) + +## A Note on GlassIt Linux + +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". + +## 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) diff --git a/vs_code_ext.txt b/vs_code_ext.txt deleted file mode 100644 index 30aaaa1b..00000000 --- a/vs_code_ext.txt +++ /dev/null @@ -1,37 +0,0 @@ -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)