- Add frecency scoring + git status boost to ^E edit widget - Add network latency indicator to tmux status bar (wifi/wired detection, 10s cache) - Add powerline separators between tmux status sections - Swap git status colors: modified=bluish grey, untracked=amber (prompt, gitconfig, widget) - Remove bold from feature branch name in prompt - Add gw (git show) and gdm (diff against default branch) aliases Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
99 lines
2.4 KiB
INI
99 lines
2.4 KiB
INI
[include]
|
|
path = ~/.gitconfig.local
|
|
|
|
[github]
|
|
user = andrejusk
|
|
|
|
[credential]
|
|
helper =
|
|
|
|
[credential "https://github.com"]
|
|
helper = !/usr/bin/env gh auth git-credential
|
|
|
|
[credential "https://gist.github.com"]
|
|
helper = !/usr/bin/env gh auth git-credential
|
|
|
|
[init]
|
|
defaultBranch = master
|
|
|
|
[core]
|
|
autocrlf = input
|
|
pager = delta
|
|
|
|
[interactive]
|
|
diffFilter = delta --color-only
|
|
|
|
[delta]
|
|
navigate = true
|
|
side-by-side = false
|
|
line-numbers = true
|
|
paging = always
|
|
pager = less --mouse -R -+X -+F
|
|
syntax-theme = dots
|
|
file-decoration-style = none
|
|
file-style = "#2CB494" bold
|
|
hunk-header-decoration-style = none
|
|
line-numbers-left-style = "#808080"
|
|
line-numbers-right-style = "#808080"
|
|
line-numbers-minus-style = "#F40404"
|
|
line-numbers-plus-style = "#2CB494"
|
|
plus-style = syntax "#0c2a24"
|
|
plus-emph-style = syntax "#164a3c"
|
|
minus-style = syntax "#2a0a0a"
|
|
minus-emph-style = syntax "#3a1a1a"
|
|
|
|
[merge]
|
|
conflictstyle = zdiff3
|
|
|
|
[color]
|
|
ui = auto
|
|
|
|
[color "status"]
|
|
added = "#2CB494"
|
|
changed = "#8787AF"
|
|
untracked = "#F88C14" italic
|
|
branch = "#2CB494"
|
|
header = "#CCE0D0"
|
|
[color "diff"]
|
|
meta = "#88409C"
|
|
frag = "#4068D4"
|
|
old = "#F40404"
|
|
new = "#2CB494"
|
|
context = "#808080"
|
|
commit = "#F88C14"
|
|
[color "branch"]
|
|
current = "#2CB494" bold
|
|
local = "#CCE0D0"
|
|
remote = "#4068D4"
|
|
upstream = "#7290B8"
|
|
[color "decorate"]
|
|
branch = "#2CB494"
|
|
remoteBranch = "#4068D4"
|
|
tag = "#F88C14"
|
|
stash = "#88409C"
|
|
HEAD = "#F88C14" bold
|
|
|
|
[alias]
|
|
l = log --pretty=format:"%C(#F88C14)%h\\ %ad%C(#2CB494)%d\\ %Creset%s%C(#808080)\\ [%cn]" --decorate --date=short
|
|
ls = log --pretty=format:"%C(#F88C14)%h%C(#2CB494)%d\\ %Creset%s%C(#808080)\\ [%cn]" --decorate
|
|
ll = log --pretty=format:"%C(#F88C14)%h%C(#2CB494)%d\\ %Creset%s%C(#808080)\\ [%cn]" --decorate --numstat
|
|
ld = log --pretty=format:"%C(#F88C14)%h\\ %ad%C(#2CB494)%d\\ %Creset%s%C(#808080)\\ [%cn]" --decorate --date=relative
|
|
le = log --oneline --decorate
|
|
lg = log --graph --decorate --oneline
|
|
d = diff
|
|
ds = diff --stat
|
|
dc = diff --cached
|
|
s = status -s
|
|
b = "!git for-each-ref --sort='-authordate' --format='%(authordate)%09%(objectname:short)%09%(refname)' refs/heads | sed -e 's-refs/heads/--'"
|
|
a = add
|
|
r = restore --staged
|
|
ap = add -p
|
|
c = commit --verbose
|
|
ca = commit -a --verbose
|
|
cm = commit -m
|
|
cam = commit -a -m
|
|
m = commit --amend --verbose
|
|
st = stash
|
|
sa = stash apply
|
|
|