-
I'm trying out the option Is there any way to disable the option only for |
Beta Was this translation helpful? Give feedback.
Answered by
Kr1ss-XD
Jun 4, 2022
Replies: 1 comment 1 reply
-
Hi @bew, you could make use of the [pager]
blame = delta --width=0
diff = delta
log = delta
; ...
[delta]
width = variable
; ... |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
bew
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @bew,
you could make use of the
pager.blame
option in thegitconfig
, and set that so thatdelta
would be called with--width=0
when runninggit blame
, and have a default of--width=variable
for any other git subcommand :