From bcc70280fbe68ef97e9cb42d6a130d75b936427d Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sat, 7 Feb 2026 15:44:56 -0500 Subject: [PATCH] docs: fix vim.max_lines default in config example Problem: the vimdoc config example showed max_lines = 500 under vim, but the actual default in init.lua is 200. Solution: change the example to match the real default. --- doc/diffs.nvim.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/diffs.nvim.txt b/doc/diffs.nvim.txt index 42009e9..3db6db6 100644 --- a/doc/diffs.nvim.txt +++ b/doc/diffs.nvim.txt @@ -66,7 +66,7 @@ Configuration is done via `vim.g.diffs`. Set this before the plugin loads: }, vim = { enabled = false, - max_lines = 500, + max_lines = 200, }, intra = { enabled = true,