diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-06-05 19:39:39 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-06-05 19:39:39 -0700 |
| commit | bb915820bd6e33646fe5f90446f99b0faeefc73d (patch) | |
| tree | c783cf57a92bb510c32aed1dfb660062d135786a /home | |
| parent | 6e8f05eef71e3e1aa7e14d56a7bbd890a70d9183 (diff) | |
VSCode zig config
Diffstat (limited to 'home')
| -rw-r--r-- | home/vscode.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/home/vscode.nix b/home/vscode.nix index 84ed2ab..8766ae8 100644 --- a/home/vscode.nix +++ b/home/vscode.nix @@ -11,6 +11,7 @@ jnoortheen.nix-ide golang.go + ziglang.vscode-zig ]; userSettings = { @@ -21,6 +22,15 @@ "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; }; }; } |