vscode-extensions.miguelsolorio.min-theme: init at 1.5.0

This commit is contained in:
Timon Schelling 2025-06-23 13:38:38 +00:00
parent 59a04e2da8
commit 842e50a0fb
2 changed files with 18 additions and 0 deletions

View File

@ -3215,6 +3215,8 @@ let
};
};
miguelsolorio.min-theme = callPackage ./miguelsolorio.min-theme { };
mikestead.dotenv = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "dotenv";

View File

@ -0,0 +1,16 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "min-theme";
publisher = "miguelsolorio";
version = "1.5.0";
hash = "sha256-DF/9OlWmjmnZNRBs2hk0qEWN38RcgacdVl9e75N8ZMY=";
};
meta = {
description = "Minimal theme for VS Code that comes in dark and light";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=miguelsolorio.min-theme";
homepage = "https://github.com/miguelsolorio/min-theme";
license = lib.licenses.mit;
};
}