[new] Add the git
config
This commit is contained in:
parent
51738c04ea
commit
3337e9dea8
1 changed files with 52 additions and 0 deletions
52
.gitconfig
Normal file
52
.gitconfig
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
# INCLUDES
|
||||||
|
# --------
|
||||||
|
# Local/Private config goes in the include
|
||||||
|
[include]
|
||||||
|
path = ~/.gitconfig.local
|
||||||
|
# URL ALIASES
|
||||||
|
# -----------
|
||||||
|
# Alias for my mian account
|
||||||
|
[url "https://github.com/anas-elgarhy/"]
|
||||||
|
insteadOf = me://
|
||||||
|
# COLORS
|
||||||
|
# ------
|
||||||
|
# Dracula Dark Theme
|
||||||
|
[color]
|
||||||
|
ui = auto
|
||||||
|
[color "branch"]
|
||||||
|
current = cyan bold reverse
|
||||||
|
local = white
|
||||||
|
plain =
|
||||||
|
remote = cyan
|
||||||
|
[color "diff"]
|
||||||
|
commit =
|
||||||
|
func = cyan
|
||||||
|
plain =
|
||||||
|
whitespace = magenta reverse
|
||||||
|
meta = white
|
||||||
|
frag = cyan bold reverse
|
||||||
|
old = red
|
||||||
|
new = green
|
||||||
|
[color "grep"]
|
||||||
|
context =
|
||||||
|
filename =
|
||||||
|
function =
|
||||||
|
linenumber = white
|
||||||
|
match =
|
||||||
|
selected =
|
||||||
|
separator =
|
||||||
|
[color "interactive"]
|
||||||
|
error =
|
||||||
|
header =
|
||||||
|
help =
|
||||||
|
prompt =
|
||||||
|
[color "status"]
|
||||||
|
added = green
|
||||||
|
changed = yellow
|
||||||
|
header =
|
||||||
|
localBranch =
|
||||||
|
nobranch =
|
||||||
|
remoteBranch = cyan bold
|
||||||
|
unmerged = magenta bold reverse
|
||||||
|
untracked = red
|
||||||
|
updated = green bold
|
Loading…
Reference in a new issue