From 96387d43e636169a3e9c4b33f29d325f01fb4c66 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Tue, 11 Jun 2024 20:29:18 -0500 Subject: [PATCH] build: change neovim default to true Commit ec98c7cd3d0d fixed the default value to match the description, however this resulted in the docs failing to build since the files are needed in the default build case. Update the default and description to true. --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index f99cba0..d7240b4 100644 --- a/build.zig +++ b/build.zig @@ -3,7 +3,7 @@ const std = @import("std"); pub fn build(b: *std.Build) void { const include_libxev = b.option(bool, "libxev", "Enable support for libxev library (default: true)") orelse true; const include_images = b.option(bool, "images", "Enable support for images (default: true)") orelse true; - const include_nvim = b.option(bool, "nvim", "Enable support for the neovim widget (default: false)") orelse false; + const include_nvim = b.option(bool, "nvim", "Enable support for the neovim widget (default: true)") orelse true; const include_text_input = b.option(bool, "text_input", "Enable support for the TextInput widget (default: true)") orelse true; const options = b.addOptions();