build: change neovim default to true

Commit ec98c7cd3d 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.
This commit is contained in:
Tim Culverhouse 2024-06-11 20:29:18 -05:00
parent ec98c7cd3d
commit 96387d43e6

View file

@ -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();