Supabase VS Code Theme
A Supabase inspired VS Code theme.
Not affiliated with Supabase.
What it looks like:
Installing vsce
vsce
is the command-line tool you use to package and publish Visual Studio Code extensions. You can install it using different package managers:
Using npm
If you have Node.js installed, you can use npm (Node Package Manager) to install vsce
globally:
npm install -g vsce
Using Yarn
If you prefer Yarn, another popular package manager, you can install vsce
globally with:
yarn global add vsce
Using pnpm
If you use pnpm, a fast, disk space-efficient package manager, install vsce
with:
pnpm add -g vsce
After installation, you can check if vsce
is correctly installed by running:
vsce --version
Packaging the Extension
To package your VS Code theme into a .vsix
file, follow these steps:
Ensure all dependencies are installed:
npm install
Run the following command to create a .vsix
package:
vsce package
This will generate a .vsix
file in the root of your project directory.
Installing the Extension in VS Code
After packaging your extension, you can install it in VS Code by following these steps:
Method 1: Drag and Drop
- Open VS Code.
- Drag and drop the
.vsix
file into the Extensions view (Ctrl+Shift+X
or Cmd+Shift+X
).
Method 2: Command Line
Alternatively, you can install the extension via the command line:
code --install-extension path/to/your-extension-name.vsix
Replace path/to/your-extension-name.vsix
with the actual path to your packaged .vsix
file.
Development
If you want to work on the theme and test your changes live:
Open the project in VS Code:
code .
Start the extension in development mode by pressing F5
or selecting Start Debugging
from the Run
menu.
A new VS Code window will open with your theme loaded. Any changes you make to the theme files will be reflected here upon reload (Ctrl+R
or Cmd+R
).
License
This project is licensed under the MIT License. See the LICENSE file for more details.
`