-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
{ | ||
// path to the zig compiler or just "zig" if it's in your PATH | ||
"zig.executable": "zig", | ||
|
||
// automatically build the file/project on save | ||
"zig.build.on_save": false, | ||
|
||
// automatically format the file/project on save | ||
"zig.fmt.on_save": true, | ||
|
||
// format either file or project. the only valid options are "file" or "project" | ||
"zig.fmt.mode": "file", | ||
|
||
// automatically hide the build/fmt output panel | ||
"zig.quiet": true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters