I have a few devices running Arch… Rasperrys, laptops, a NAS, etc
After an update I’ll run pacdiff to check for any updated configurations to look out for.
On the laptops I’ll use meld to compare and it’s nice to visually pick and choose what to update.
But for the headless units, I’m using vimdiff and it’s sometimes difficult to see what to change - esp. when a few lines in a block of changes needs picking and choosing.
What other approaches are you using for this?
I use
nvim -D
which is a lot like vimdiff. Few tips::set termguicolors
dp
to push a diff chunk to the other filedo
to obtain a chunk from the other fileIt works really well for me, I haven’t wanted anything else. I’m one of those weirdos who spends all day using neovim, though
Ah, ok, not tried that… I’ll check it out. Thanks