mirror of
https://github.com/Ascyii/dotfiles.git
synced 2026-01-01 06:54:24 -05:00
Rename to real dot dirs and add fish
This commit is contained in:
35
home/dot-gitconfig
Normal file
35
home/dot-gitconfig
Normal file
@@ -0,0 +1,35 @@
|
||||
[alias]
|
||||
br = "branch"
|
||||
cm = "commit -a -m 'auto commit'"
|
||||
lg = "log --oneline --graph --decorate"
|
||||
st = "status"
|
||||
up = "!f() { git add .; git commit -a -m 'auto commit'; git fetch -a && git pull && git push; }; f"
|
||||
|
||||
[branch]
|
||||
autoSetupMerge = true
|
||||
|
||||
[init]
|
||||
defaultBranch = "main"
|
||||
|
||||
[pull]
|
||||
rebase = true
|
||||
|
||||
[push]
|
||||
autoSetupRemote = true
|
||||
default = "current"
|
||||
|
||||
[user]
|
||||
email = "jonashahn1@gmx.net"
|
||||
name = "Jonas Hahn"
|
||||
|
||||
[diff]
|
||||
tool = "vimdiff"
|
||||
|
||||
[core]
|
||||
autocrlf = input
|
||||
|
||||
[filter "lfs"]
|
||||
clean = git-lfs clean -- %f
|
||||
smudge = git-lfs smudge -- %f
|
||||
process = git-lfs filter-process
|
||||
required = true
|
||||
Reference in New Issue
Block a user