blob: 434ce4fa3c97cb3d7260895a5128fc5642c75ded (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
local status_ok, yodel = pcall(require, "git-yodel")
if not status_ok then
return
end
yodel.setup {
diffpreview = {
border = 'shadow',
width = 'auto',
height = 'auto',
}
}
|