1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-06 09:01:06 +01:00

treewide: NixVim/nixvim -> Nixvim

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png 2025-12-04 16:36:05 +01:00 committed by Matt Sturgeon
parent 5d1c27e53c
commit 03a51dbf3d
34 changed files with 78 additions and 78 deletions

View file

@ -3,6 +3,6 @@
options.enableMan = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Install the man pages for NixVim options.";
description = "Install the man pages for Nixvim options.";
};
}

View file

@ -60,7 +60,7 @@ in
description = ''
When enabled, the language server package will be added to the end of the `PATH` _(suffix)_ instead of the beginning _(prefix)_.
This can be useful if you want local versions of the language server (e.g. from a devshell) to override the nixvim version.
This can be useful if you want local versions of the language server (e.g. from a devshell) to override the Nixvim version.
'';
};

View file

@ -68,7 +68,7 @@ in
description = ''
Whether the config will be included in the wrapper script.
When enabled, the nixvim config will be passed to `nvim` using the `-u` option.
When enabled, the Nixvim config will be passed to `nvim` using the `-u` option.
'';
defaultText = lib.literalMD ''
Configured by your installation method: `false` when using the Home Manager module, `true` otherwise.

View file

@ -102,7 +102,7 @@ in
buildNixvim = lib.mkOption {
type = lib.types.bool;
description = "Whether to build the nixvim config in the test.";
description = "Whether to build the Nixvim config in the test.";
default = true;
};