Updated README, config.zig doc comment

This commit is contained in:
Alexandros Naskos 2020-05-14 15:09:27 +03:00
parent f5e4586c76
commit 942b617865
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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,