From 678d7d43082e9830e83b4cac693371a536b935f3 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Mon, 16 Dec 2024 20:06:49 -0600 Subject: [PATCH] vim.section.md: fix typo --- doc/languages-frameworks/vim.section.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/languages-frameworks/vim.section.md b/doc/languages-frameworks/vim.section.md index 7b3522af17c87..0b5c26ef44a08 100644 --- a/doc/languages-frameworks/vim.section.md +++ b/doc/languages-frameworks/vim.section.md @@ -241,7 +241,7 @@ It accepts a single string for a module, or a list of module strings to test. - `nvimRequireCheck = MODULE;` - `nvimRequireCheck = [ MODULE1 MODULE2 ];` -When `neovimRequireCheck` is not specified, we will search the plugin's directory for lua modules to attempt loading. This quick smoke test can catch obvious dependency errors that might be missed. +When `nvimRequireCheck` is not specified, we will search the plugin's directory for lua modules to attempt loading. This quick smoke test can catch obvious dependency errors that might be missed. The check hook will fail the build if any failures are detected to encourage inspecting the logs to identify potential issues. If you would like to only check a specific module, this can be manually added through plugin definition overrides in the [overrides.nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vim/plugins/overrides.nix).