mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-19 02:13:06 +01:00
Jo
e1bbf4856e
refactor: remove some comments feat: set VSCodium color scheme to Catppuccin Macchiato
26 lines
No EOL
758 B
Nix
26 lines
No EOL
758 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs.vscodium;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
# wakatime.vscode-wakatime # Wakatime for coding statistics
|
|
vue.volar # Vue support
|
|
svelte.svelte-vscode # Svelte support
|
|
pkief.material-icon-theme # Material icons
|
|
prisma.prisma
|
|
ms-python.vscode-pylance # Python support
|
|
ms-dotnettools.csharp # CSharp support
|
|
mikestead.dotenv # Improved dotenv support
|
|
catppuccin.catppuccin-vsc # Catppuccin theme
|
|
jnoortheen.nix-ide # Nix language support
|
|
];
|
|
userSettings = {
|
|
"nix.enableLanguageServer" = true;
|
|
"nix.serverPath" = "nil";
|
|
"workbench.colorTheme" = "Catppuccin Macchiato";
|
|
};
|
|
};
|
|
} |