Skip to content

Instantly share code, notes, and snippets.

@ktimothy
Last active September 13, 2025 13:15
Show Gist options
  • Select an option

  • Save ktimothy/3205765 to your computer and use it in GitHub Desktop.

Select an option

Save ktimothy/3205765 to your computer and use it in GitHub Desktop.
git config
[alias]
h = log --pretty=format:\"%h \\\"%s\\\" by %an %ci (%ai)\" -10 --graph
s = status
a = log -g --pretty=format:\"%h %cd %ad \\\"%s\\\" by %an (%cn)\" --all
p = pull --rebase
pff = push --force
[user]
name = Tim Kovalev
email = timothy.kovalev@gmail.com
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKIgkJ1/6kByAvlW7L+yykU/rZm5I5HWvwo7fsmc6rVH
[core]
editor = "subl -w"
[merge]
conflictstyle = diff3
[push]
default = current
[pull]
default = current
[branch]
autosetuprebase = always
autosetupmerge = true
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[gpg]
format = ssh
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
[commit]
gpgsign = true
export PATH=$PATH:"/Applications/Sublime Text.app/Contents/SharedSupport/bin"
# fnm
FNM_PATH="/usr/local/opt/fnm/bin"
if [ -d "$FNM_PATH" ]; then
eval "`fnm env`"
fi
export PATH="/usr/local/opt/openjdk/bin:$PATH"
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/timkovalev/Downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/timkovalev/Downloads/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/timkovalev/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/timkovalev/Downloads/google-cloud-sdk/completion.zsh.inc'; fi
# .ssh/config
Host *
IdentityAgent "/Users/timkovalev/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment