forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ab8c51
commit aa4caca
Showing
1 changed file
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,6 +90,8 @@ | |
[core] | ||
editor = code --wait | ||
# Use custom `.gitignore` and `.gitattributes` | ||
excludesfile = ~/.gitignore | ||
attributesfile = ~/.gitattributes | ||
|
@@ -137,6 +139,11 @@ | |
# Detect copies as well as renames | ||
renames = copies | ||
tool = vscode | ||
[difftool "vscode"] | ||
cmd = code --wait --diff $LOCAL $REMOTE | ||
[diff "bin"] | ||
# Use `hexdump` to diff binary files | ||
|
@@ -151,10 +158,10 @@ | |
# Include summaries of merged commits in newly created merge commit messages | ||
log = true | ||
tool = kdiff3 | ||
tool = vscode | ||
[mergetool "kdiff3"] | ||
path = /Applications/kdiff3.app/Contents/MacOS/kdiff3 | ||
[mergetool "vscode"] | ||
cmd = code --wait $MERGED | ||
[push] | ||
|
@@ -188,5 +195,7 @@ | |
insteadOf = "gist:" | ||
[user] | ||
email = [email protected] | ||
email = [email protected] | ||
name = Marcio Toshio | ||
[pager] | ||
branch = false |