From ddf2de739068b5ff0866ccb1d067f3cb53a4fc55 Mon Sep 17 00:00:00 2001 From: David Czihak Date: Thu, 7 May 2026 14:33:19 +0200 Subject: Initial commit --- examples/hello-zig/.nova/Configuration.json | 8 ++++++++ examples/hello-zig/.nova/Tasks/Zig Debug.json | 12 ++++++++++++ .../hello-zig/.nova/Tasks/Zig Package (macOS Terminal).json | 7 +++++++ examples/hello-zig/.nova/Tasks/Zig Package.json | 8 ++++++++ 4 files changed, 35 insertions(+) create mode 100644 examples/hello-zig/.nova/Configuration.json create mode 100644 examples/hello-zig/.nova/Tasks/Zig Debug.json create mode 100644 examples/hello-zig/.nova/Tasks/Zig Package (macOS Terminal).json create mode 100644 examples/hello-zig/.nova/Tasks/Zig Package.json (limited to 'examples/hello-zig/.nova') diff --git a/examples/hello-zig/.nova/Configuration.json b/examples/hello-zig/.nova/Configuration.json new file mode 100644 index 0000000..47e341a --- /dev/null +++ b/examples/hello-zig/.nova/Configuration.json @@ -0,0 +1,8 @@ +{ + "at.dcz.nova-zig.toolchain.lldb-dap-path" : "\/Library\/Developer\/CommandLineTools\/usr\/bin\/lldb-dap", + "at.dcz.nova-zig.toolchain.zig-path" : "\/opt\/homebrew\/bin\/zig", + "at.dcz.nova-zig.zls.build-on-save" : true, + "at.dcz.nova-zig.zls.enabled" : true, + "zls.enable_build_on_save" : true, + "zls.zig_exe_path" : "\/opt\/homebrew\/bin\/zig" +} diff --git a/examples/hello-zig/.nova/Tasks/Zig Debug.json b/examples/hello-zig/.nova/Tasks/Zig Debug.json new file mode 100644 index 0000000..53b7f13 --- /dev/null +++ b/examples/hello-zig/.nova/Tasks/Zig Debug.json @@ -0,0 +1,12 @@ +{ + "extension" : { + "identifier" : "at.dcz.nova-zig", + "name" : "Zig" + }, + "extensionTemplate" : "zigDebug", + "extensionValues" : { + "console" : "internalConsole", + "programPath" : "zig-out\/bin\/hello-zig" + }, + "openLogOnRun" : "start" +} diff --git a/examples/hello-zig/.nova/Tasks/Zig Package (macOS Terminal).json b/examples/hello-zig/.nova/Tasks/Zig Package (macOS Terminal).json new file mode 100644 index 0000000..d1fa04d --- /dev/null +++ b/examples/hello-zig/.nova/Tasks/Zig Package (macOS Terminal).json @@ -0,0 +1,7 @@ +{ + "extension" : { + "identifier" : "at.dcz.nova-zig", + "name" : "Zig" + }, + "extensionTemplate" : "zigBuildRunTerminal" +} diff --git a/examples/hello-zig/.nova/Tasks/Zig Package.json b/examples/hello-zig/.nova/Tasks/Zig Package.json new file mode 100644 index 0000000..10830e6 --- /dev/null +++ b/examples/hello-zig/.nova/Tasks/Zig Package.json @@ -0,0 +1,8 @@ +{ + "buildBeforeRunning" : true, + "extension" : { + "identifier" : "at.dcz.nova-zig", + "name" : "Zig" + }, + "extensionTemplate" : "zigBuildRun" +} -- cgit v1.3