feat(nvim): enable improved diff from v9

This commit is contained in:
Price Hiller 2022-11-22 23:21:02 -06:00
parent 8113f91d32
commit 1b2102f20b

View File

@ -125,6 +125,10 @@ M.setup = function()
-- Hide the tabline
vim.opt.showtabline = 0
-- Improved diff
opt.diffopt:append("linematch:75")
opt.fillchars:append("diff:/")
end
return M