diff options
| author | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2023-12-22 08:19:17 -0800 |
|---|---|---|
| committer | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2023-12-22 08:19:17 -0800 |
| commit | eb46161b5e70b0cb110e30d786b68d5ce78783e7 (patch) | |
| tree | fa692b9db4d991dabd209c29a54f13b78b5a1e74 /src/config.zig | |
| parent | 4f01aafdbaf6a944a614dbb8a182220bf9239c3e (diff) | |
config: generate vim configs at comptime
Diffstat (limited to 'src/config.zig')
| -rw-r--r-- | src/config.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.zig b/src/config.zig index 57c4bcd88..398f5fa92 100644 --- a/src/config.zig +++ b/src/config.zig @@ -21,4 +21,7 @@ pub const Wasm = if (!builtin.target.isWasm()) struct {} else @import("config/Wa test { @import("std").testing.refAllDecls(@This()); + + // Vim syntax file, not used at runtime but we want to keep it tested. + _ = @import("config/vim.zig"); } |
