updated dotfiles
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
[user]
|
||||
email = Jake.Pullen333@gmail.com
|
||||
name = Jake Pullen
|
||||
|
||||
[commit]
|
||||
template = ~/.config/git/template
|
||||
|
||||
[core]
|
||||
autocrlf = input # keep newlines as in input
|
||||
compression = 9 # trade cpu for network
|
||||
fsync = none
|
||||
whitespace = error # threat incorrect whitespace as errors
|
||||
|
||||
[advice] # disable advices
|
||||
addEmptyPathspec = false
|
||||
pushNonFastForward = false
|
||||
statusHints = false
|
||||
|
||||
[blame]
|
||||
coloring = highlightRecent
|
||||
date = relative
|
||||
|
||||
[diff]
|
||||
context = 3 # less context in diffs
|
||||
renames = copies # detect copies as renames in diffs
|
||||
interHunkContext = 10 # merge near hunks in diffs
|
||||
|
||||
[init]
|
||||
defaultBranch = main
|
||||
|
||||
[log]
|
||||
abbrevCommit = true # short commits
|
||||
graphColors = blue,yellow,cyan,magenta,green,red
|
||||
|
||||
[status]
|
||||
branch = true
|
||||
short = true
|
||||
showStash = true
|
||||
showUntrackedFiles = all # show individual untracked files
|
||||
|
||||
[pager]
|
||||
branch = false # no need to use pager for git branch
|
||||
diff = diff-so-fancy | $PAGER # diff-so-fancy as diff pager
|
||||
|
||||
[push]
|
||||
autoSetupRemote = true # easier to push new branches
|
||||
default = current # push only current branch by default
|
||||
followTags = true # push also tags
|
||||
gpgSign = false # my remotes doesn't support sign pushes
|
||||
|
||||
[pull]
|
||||
rebase = true
|
||||
|
||||
[submodule]
|
||||
fetchJobs = 16
|
||||
|
||||
[rebase]
|
||||
autoStash = true
|
||||
|
||||
# Colors
|
||||
[color "blame"]
|
||||
highlightRecent = black bold,1 year ago,white,1 month ago,default,7 days ago,blue
|
||||
|
||||
[color "branch"]
|
||||
current = magenta
|
||||
local = default
|
||||
remote = yellow
|
||||
upstream = green
|
||||
plain = blue
|
||||
|
||||
[color "diff"]
|
||||
meta = black bold
|
||||
frag = magenta
|
||||
context = white
|
||||
whitespace = yellow reverse
|
||||
|
||||
[interactive]
|
||||
singlekey = true
|
||||
|
||||
# URL shortcuts
|
||||
[url "git@github.com:"]
|
||||
insteadOf = "gh:"
|
||||
@@ -0,0 +1,34 @@
|
||||
# feat: ✨
|
||||
# feat: 🔍
|
||||
# feat: 🔗
|
||||
# feat: 🔒
|
||||
|
||||
# fix: 🐛
|
||||
# fix: 🐞
|
||||
# fix: 🩹
|
||||
# fix: 🚑️
|
||||
|
||||
# style: 💅
|
||||
# style: 🎨
|
||||
# style: 💄
|
||||
|
||||
# ci: 🦊
|
||||
# ci: 📦
|
||||
|
||||
# deploy: 🚀
|
||||
# deploy: 📦
|
||||
|
||||
# chore: 🧹
|
||||
# chore: 🔧
|
||||
# chore: ⚙️
|
||||
# docs: 📜
|
||||
|
||||
# refactor: 🔨
|
||||
# perf: 🚀
|
||||
|
||||
# test: 🚦
|
||||
# debug: 🧪
|
||||
|
||||
# BREAKING CHANGE: 🚨
|
||||
# BREAKING CHANGE: 💥
|
||||
# BREAKING CHANGE: 💣
|
||||
Reference in New Issue
Block a user