School: install webstorm with plugins

This commit is contained in:
Toast 2023-11-30 10:19:00 +01:00
parent 51f3854609
commit 2542722888
2 changed files with 23 additions and 0 deletions

View file

@ -4,6 +4,7 @@
imports = [
./virtualbox.nix
./idea.nix
./webstorm.nix
./vscode.nix
];

View file

@ -0,0 +1,22 @@
{ pkgs, ... }:
with pkgs;
{
home-manager.users.toast = {
home = {
packages = [ jetbrains.webstorm ];
# Install plugins
file = {
".local/share/JetBrains/WebStorm2023.2/catppuccin.jar".source = fetchurl {
url = "https://github.com/catppuccin/jetbrains/releases/download/v3.2.1/Catppuccin.Theme-3.2.1.jar";
hash = "sha256-vE3Tv/dNfWyRuBJXLDPmtY1GnLShqM+dJR5rltXYdOY=";
};
".local/share/JetBrains/WebStorm2023.2/rainbow-brackets".source = fetchzip {
url = "https://github.com/izhangzhihao/intellij-rainbow-brackets/releases/download/2023.3.7/intellij-rainbow-brackets-2023.3.7.zip";
hash = "sha256-szgyQs3iCge9rI274PA29i+tprPE11xpyJqiccedp6A=";
};
};
};
};
}