# git
All things related to the infamous VCS, git.
git-scm.com (opens new window)
# Packages
# lazygit (tui)
simple terminal UI for git commands
github.com/jesseduffield/lazygit (opens new window)
# delta (git diff)
A viewer for git and diff output
github.com/dandavison/delta (opens new window)
# GitHub CLI
GitHub’s official command line tool
cli.github.com (opens new window)
# Committia
A Vim plugin for more pleasant editing on commit messages
github.com/rhysd/committia.vim (opens new window)
# Config
[user]
name = Josh Medeski
email = josh.medeski@gmail.com
[url "git@github.com:"]
insteadOf = https://github.com/
[core]
editor = nvim
excludesfile = /Users/joshmedeski/.gitignore
#pager = difft
[pager]
difftool = true
[color]
ui = true
[pager]
difftool = true
[diff]
tool = difftastic
[difftool]
prompt = false
[difftool "difftastic"]
cmd = difft "$LOCAL" "$REMOTE"