blob: 8766ae81d33c2ed30f782a7803add75d4cf1e330 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{ pkgs, ... }:
{
programs.vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
jdinhlife.gruvbox
vscode-icons-team.vscode-icons
jnoortheen.nix-ide
golang.go
ziglang.vscode-zig
];
userSettings = {
"workbench.colorTheme" = "Gruvbox Dark Medium";
"workbench.iconTheme" = "vscode-icons";
"window.titleBarStyle" = "custom";
"git.confirmSync" = false;
"vsicons.dontShowNewVersionMessage" = true;
# Zig
"zig.initialSetupDone" = true;
"zig.path" = "";
"zig.formattingProvider" = "off";
"zig.zls.path" = "";
"zig.zls.enableAutofix" = false;
"zig.zls.enableInlayHints" = false;
};
};
}
|