this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

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.

+1 -1
+1 -1
build.zig
··· 3 3 pub fn build(b: *std.Build) void { 4 4 const include_libxev = b.option(bool, "libxev", "Enable support for libxev library (default: true)") orelse true; 5 5 const include_images = b.option(bool, "images", "Enable support for images (default: true)") orelse true; 6 - const include_nvim = b.option(bool, "nvim", "Enable support for the neovim widget (default: false)") orelse false; 6 + const include_nvim = b.option(bool, "nvim", "Enable support for the neovim widget (default: true)") orelse true; 7 7 const include_text_input = b.option(bool, "text_input", "Enable support for the TextInput widget (default: true)") orelse true; 8 8 9 9 const options = b.addOptions();