home: vscode: use material icons

This commit is contained in:
Guanran Wang 2024-01-18 16:21:51 +08:00
parent aca28affea
commit 275a3725d8
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8

View file

@ -61,6 +61,10 @@
gitlens.showWhatsNewAfterUpgrades = false; gitlens.showWhatsNewAfterUpgrades = false;
gitlens.plusFeatures.enabled = false; gitlens.plusFeatures.enabled = false;
gitlens.telemetry.enabled = false; gitlens.telemetry.enabled = false;
### Material icons
workbench.iconTheme = "material-icon-theme";
workbench.productIconTheme = "material-product-icons";
}; };
extensions = with pkgs.vscode-extensions; [ extensions = with pkgs.vscode-extensions; [
### QoL ### QoL
@ -75,6 +79,10 @@
redhat.vscode-xml redhat.vscode-xml
tamasfe.even-better-toml tamasfe.even-better-toml
#bungcip.better-toml #bungcip.better-toml
### Material icons
pkief.material-icon-theme
pkief.material-product-icons
]; ];
} }