aboutsummaryrefslogtreecommitdiff
path: root/.tigrc
AgeCommit message (Collapse)Author
2022-07-07Update tig configGuangxiong Lin
2022-01-23Update difftool rev in .tigrcGuangxiong Lin
The original commands in .tigrc use rev^! which will exclude all of its parents. It mades difftool not work. This commit changes it to rev^- which exclude 1th parent so the diff in difftool will march the diff showed in tig (--diff-merges=first-parent) now.
2022-01-23Add --diff-merges=first-parent in .tigrcGuangxiong Lin
The diff of merge commit in tig only show filenames. Add this options to make diff view show diff related to first parent.
2022-01-23Remove --tool vimdiff in .tigrcGuangxiong Lin
This is to make commands in .tigrc use default difftool in .gitconfig. So it will not influence when I change difftool in the future.
2022-01-23Add difftool keybinds in tig configGuangxiong Lin
Add keybinds to call git difftool in tig. Use D in all views to show the diffs of commit/file. Besides, this commit also changes the structure of .tigrc file.
2022-01-22Add tig configGuangxiong Lin