[GUIDE] 2025 installing VSIX of extensions not found by VSCodium (that do not offer VSIX's) #2213
Event-Horizon
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
[GUIDE] 2025 installing VSIX of extensions not found by VSCodium (that do not offer VSIX's)
Intro
Hello, today I was attempting to get SQL Syntax highlighting in Python for VSCodium.
The extension I found had no VSIX packaged, and did not show in VSCodium.
After figuring it out I'm here to give you steps on HOW.
The How
Steps for VSCodium on Linux:
myextension.zip
(or using git clone it)~/Downloads/myextension
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
nvm install 22
~/Downloads/myextension/
npm install webpack
, yes for production)vsce package
(it will use the current path)codium --install-extension ~/Downloads/myextension/myextension.vsix
Disclaimer:
Installing extensions this way can be risky as you are manually packaging some randoms code and putting it into a program to run. Depending on the extensions popularity it may be safer if more popular since there are more eyes on it but its not guaranteed.
Beta Was this translation helpful? Give feedback.
All reactions