From ec98c7cd3d0d7f1d6964892445e067f8d63e5ca7 Mon Sep 17 00:00:00 2001 From: Frederico Winter Date: Tue, 11 Jun 2024 21:10:10 -0300 Subject: [PATCH] changed the default value of the nvim option to correspond to it's default description --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 940799b..f99cba0 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 true; + const include_nvim = b.option(bool, "nvim", "Enable support for the neovim widget (default: false)") orelse false; const include_text_input = b.option(bool, "text_input", "Enable support for the TextInput widget (default: true)") orelse true; const options = b.addOptions();