-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.nix
83 lines (73 loc) · 2.47 KB
/
git.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{ pkgs, config, ... }:
{
programs.git = {
enable = true;
userName = "aiotter";
userEmail = "git@aiotter.com";
aliases = {
delete-merged = ''!f() { git branch --merged ''${1:-master} | grep -v "^[ *]*''${1:-master}$" | xargs git branch -d; }; f'';
delete-squashed = ''
!f() { local targetBranch=''${1:-master} && git checkout -q $targetBranch && git branch --merged | grep -v \"\\*\" | xargs -n 1 git branch -d && git for-each-ref refs/heads/ \"--format=%(refname:short)\" | while read branch; do mergeBase=$(git merge-base $targetBranch $branch) && [[ $(git cherry $targetBranch $(git commit-tree $(git rev-parse $branch^{tree}) -p $mergeBase -m _)) == \"-\"* ]] && git branch -D $branch; done; }; f
'';
fpush = "push --force-with-lease";
get = "!ghq get";
graph = "log --graph --pretty=format:'%C(yellow)%h%Creset -%C(auto)%d%Creset %s (%cr) %C(blue)<%an>%Creset' --abbrev-commit --date=relative";
list = "!ghq list";
one = "!git log --oneline --color=always | head";
sync = "!git fetch && git reset --hard origin/$(git branch --show-current)";
unstage = "reset HEAD";
};
delta = {
enable = true;
options = {
features = "traditional";
traditional = {
keep-plus-minus-markers = true;
minus-style = "syntax dim strike \"#001930\"";
minus-non-emph-style = "syntax dim strike \"#001930\"";
minus-emph-style = "syntax strike \"#005099\"";
plus-emph-style = "auto bold auto";
};
side-by-side = {
side-by-side = true;
line-numbers = true;
minus-style = "syntax dim strike \"#001930\"";
minus-emph-style = "syntax bold \"#005099\"";
plus-emph-style = "auto bold auto";
};
};
};
ignores = [
"*.swp"
"*~"
".DS_Store"
# General development
".direnv/"
".env"
# Python
"*.egg-info/"
".ipynb_checkpoints"
".ropeproject"
".venv"
"__pycache__/"
"build/"
"develop-eggs/"
"dist/"
"wheels/"
# IntelliJ
".idea/"
];
extraConfig = {
user.useConfigOnly = true;
rebase.autosquash = true;
commit.verbose = true;
log.date = "iso";
ghq = {
root = "~/repo";
user = "aiotter";
};
credential."https://github.com".helper = "${pkgs.gh}/bin/gh auth git-credential";
};
};
home.packages = with pkgs; [ gh ];
}