12 lines
346 B
Zig
12 lines
346 B
Zig
// Configuration options for zls.
|
|
|
|
/// Whether to enable snippet completions
|
|
enable_snippets: bool = false,
|
|
|
|
/// zig library path
|
|
zig_lib_path: ?[]const u8 = null,
|
|
|
|
/// Whether to pay attention to style issues. This is opt-in since the style
|
|
/// guide explicitly states that the style info provided is a guideline only.
|
|
warn_style: bool = false,
|