Created
May 5, 2024 14:49
-
-
Save 0x61nas/9b9bb82c34515c6c42069153cd2fce70 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ lib, pkgs, ... }: | |
{ | |
home.packages = with pkgs; [ delta ]; | |
programs.git = { | |
enable = true; | |
userName = "0x61nas"; | |
userEmail = "[email protected]"; | |
ignores = [ "*~" ]; | |
signing = { | |
#signByDefault = true; | |
key = "0x83E03DC6F3834086"; | |
}; | |
aliases = { | |
logline = "log --graph --oneline --decorate"; | |
# allows you to switch branches quickly. For example, `git co master` instead of `git checkout master` | |
co = "checkout"; | |
# simplifying the commit process. For example, `git ci -m "Commit message"` instead of `git commit -m "Commit message"` | |
ci = "commit"; | |
# helping you create branches faster. For example, `git br feature` instead of `git branch feature`. | |
br = "branch"; | |
st = "status"; | |
df = "diff"; | |
lg = "log --pretty=\"%C(magenta)%h%Creset %C(yellow)%d%Creset%s %C(bold cyan)(%ar)%Creset\""; | |
lgg = "lg --abbrev-commit --all --graph"; | |
unstage = "reset HEAD"; | |
last = "log -1 HEAD"; | |
undo = "reset HEAD~"; | |
pushf = "push --force"; | |
squash = "!git rebase -i HEAD~$1"; | |
amend = "commit --amend -S"; | |
aliases = "config --get-regexp alias"; | |
brl = "!git for-each-ref --format='%(refname:short) %(objectname:short)' refs/heads/"; | |
uncommit = "reset HEAD^"; | |
hist = "log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short"; | |
ff = "merge --ff-only"; | |
shelve = "!git stash && git checkout"; | |
unshelve = "stash apply && git stash drop"; | |
sync = "!git fetch && git rebase origin/$(git symbolic-ref --short HEAD)"; | |
upstream = "branch --set-upstream-to"; | |
ignore = "!echo '$1' >> .gitignore"; | |
rebase = "rebase -S"; | |
addp = "add --patch"; | |
}; | |
extraConfig = { | |
init.defaultBranch = "aurora"; | |
diff.tool = "nvimdiff"; | |
difftool.prompt = false; | |
difftool."nvimdiff".cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""; | |
interactive.diffFilter = "delta --color-only"; | |
github.user = "0x61nas"; | |
merge.tool = "nvimdiff"; | |
mergetool.prompt = true; | |
mergetool."nvimdiff".cmd = | |
"nvim -d \"$LOCAL\" \"$REMOTE\" \"$MERGED\" -c 'wincmd w' -c 'wincmd J'"; | |
push.autoSetupRemote = true; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment