fix(picker.diff): added showbreak="" for fancy diff. Closes #2441

This commit is contained in:
Folke Lemaitre 2025-11-05 06:55:16 +01:00
parent 6121b40a2d
commit fb55f7bf2b
No known key found for this signature in database
GPG key ID: 9B52594D560070AB

View file

@ -182,11 +182,12 @@ local defaults = {
-- terminal: external command (git's pager for git commands, `cmd` for other diffs)
style = "fancy", ---@type "fancy"|"syntax"|"terminal"
cmd = { "delta" }, -- example for using `delta` as the external diff command
---@type vim.wo?|{} window options for the diff preview window
---@type vim.wo?|{} window options for the fancy diff preview window
wo = {
breakindent = true,
wrap = true,
-- wrap = true, -- inherit from global settings
linebreak = true,
showbreak = "",
},
},
git = {