diff --git a/README.md b/README.md index 3913b01..783fb26 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ The following options are currently available. | Option | Type | Default value | What it Does | | --- | --- | --- | --- | | `enable_snippets` | `bool` | `true` | Enables snippet completion, set to false for compatibility with language clients that do not support snippets (such as ale). | +| `zig_lib_path` | `?[]const u8` | `null` | zig library path, used to analyze std library imports. | ## Usage diff --git a/src/config.zig b/src/config.zig index 5913b6f..1b70383 100644 --- a/src/config.zig +++ b/src/config.zig @@ -3,5 +3,5 @@ /// Whether to enable snippet completions enable_snippets: bool = true, -/// zig installation path +/// zig library path zig_lib_path: ?[]const u8 = null,