fix(diff): default to boring view

This commit is contained in:
Barrett Ruth 2025-09-21 17:19:34 -04:00
parent ff20efca71
commit 0851339e63
2 changed files with 2 additions and 2 deletions

View file

@ -211,7 +211,7 @@ Here's an example configuration with lazy.nvim: >lua
ANSI escape codes are stripped for plain text display.
Requires vim.g.terminal_color_* to be configured for
proper color display.
{diff_mode} (string, default: "git") Diff backend: "none", "vim", or "git".
{diff_mode} (string, default: "none") Diff backend: "none", "vim", or "git".
"none" displays plain buffers without highlighting,
"vim" uses built-in diff, "git" provides character-level precision.
{next_test_key} (string, default: "<c-n>") Key to navigate to next test case.

View file

@ -101,7 +101,7 @@ M.defaults = {
filename = nil,
run_panel = {
ansi = true,
diff_mode = 'git',
diff_mode = 'none',
next_test_key = '<c-n>',
prev_test_key = '<c-p>',
toggle_diff_key = 't',