diff --git a/options.xhtml b/options.xhtml index bd90e737a..3306988dd 100644 --- a/options.xhtml +++ b/options.xhtml @@ -34872,6 +34872,102 @@ boolean

+
+ + programs.neovide.enable + + +
+
+

Whether to enable Neovide, No Nonsense Neovim Client in Rust.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/neovide.nix> + +
+
+
+ + programs.neovide.package + + +
+
+

The neovide package to use.

+ +

Type: +package

+ +

Default: +pkgs.neovide

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/neovide.nix> + +
+
+
+ + programs.neovide.settings + + +
+
+

Neovide configuration. +For available settings see https://neovide.dev/config-file.html. +For any option not found will need to be done in your neovim’s config instead.

+ +

Type: +TOML value

+ +

Example:

{
+  fork = false;
+  frame = "full";
+  idle = true;
+  maximized = false;
+  neovim-bin = "/usr/bin/nvim";
+  no-multigrid = false;
+  srgb = false;
+  tabs = true;
+  theme = "auto";
+  title-hidden = true;
+  vsync = true;
+  wsl = false;
+
+  font = {
+    normal = [];
+    size = 14.0;
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/neovide.nix> + +
+
programs.neovim.enable