mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-12-17 12:27:22 +00:00
Add fish, tmux, vim, and git dotfiles; clean up
This commit is contained in:
commit
e57d8318d9
47 changed files with 2125 additions and 0 deletions
46
.gitconfig
Normal file
46
.gitconfig
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
[alias]
|
||||
co = checkout
|
||||
br = branch
|
||||
cm = commit
|
||||
st = status
|
||||
rb = rebase
|
||||
push--fwl = push --force-with-lease
|
||||
llog = log --date=local
|
||||
flog = log --pretty=fuller --decorate
|
||||
lol = log --graph --decorate --oneline
|
||||
lola = log --graph --decorate --oneline --all --date-order
|
||||
blog = log origin/master... --left-right
|
||||
ds = diff --staged
|
||||
fixup = commit --fixup
|
||||
squash = commit --squash
|
||||
unstage = reset HEAD
|
||||
rum = rebase master@{u}
|
||||
|
||||
[core]
|
||||
editor = vim
|
||||
|
||||
[color]
|
||||
ui = auto
|
||||
branch = auto
|
||||
interactive = auto
|
||||
status = auto
|
||||
|
||||
[push]
|
||||
default = simple
|
||||
|
||||
[color "diff"]
|
||||
meta = yellow bold
|
||||
commit = green bold
|
||||
frag = magenta bold
|
||||
old = red bold
|
||||
new = green bold
|
||||
whitespace = red reverse
|
||||
|
||||
[color "diff-highlight"]
|
||||
oldNormal = "red bold"
|
||||
oldHighlight = "red bold 52"
|
||||
newNormal = "green bold"
|
||||
newHighlight = "green bold 22"
|
||||
|
||||
[merge]
|
||||
tool = kdiff3
|
||||
Loading…
Add table
Add a link
Reference in a new issue