all repos — nixfiles @ 78e7a667b5d301d0c3016a7255a48963ae96f3a1

System and user configuration, managed by nix and home-manager

user/settings/git.nix (view raw)

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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{ config
, pkgs
, ...
}: {
  programs.git = {
    enable = true;
    userName = "Alan Pearce";
    userEmail = "alan@alanpearce.eu";
    extraConfig = {
      init = {
        defaultBranch = "main";
      };
      apply = {
        whitespace = "fix";
      };
      advice = {
        addEmptyPathspec = false;
        detachedHead = false;
        mergeConflict = false;
      };
      ghq = {
        root = "${config.home.homeDirectory}/projects";
        user = "alanpearce";
      };
      core = {
        commitGraph = true;
        autocrlf = "input";
        safecrlf = true;
      };
      commit = {
        verbose = true;
      };
      pull = {
        rebase = true;
        ff = "only";
      };
      fetch = {
        prune = true;
        pruneTags = true;
      };
      push = {
        default = "current";
        autoSetupRemote = true;
        followTags = true;
      };
      rebase = {
        autostash = true;
        autosquash = true;
        updateRefs = true;
      };
      rerere = {
        enabled = true;
        autoupdate = true;
      };
      merge = {
        conflictStyle = "zdiff3";
      };
      diff = {
        algorithm = "histogram";
        colorMoved = "plain";
        colorMovedWS = "allow-indentation-change";
        mnemonicPrefix = true;
        renames = true;
      };
      format = {
        pretty = "fuller";
      };
      grep = {
        patternType = "perl";
      };
      remote = {
        autoSetupMerge = true;
      };
      branch = {
        sort = "committerdate";
      };
      log = {
        date = "iso-local";
      };
      tag = {
        sort = "version:refname";
      };
      "branch.master" = {
        rebase = false;
      };
      "branch.main" = {
        rebase = false;
      };
      "url.git@github.com:".insteadOf = "https://github.com/";
    };
    signing = {
      key = "0xCD4BEB92A8D46583";
    };
    aliases = {
      authors = "shortlog -s -n";
      mup = "merge FETCH_HEAD";
      rup = "rebase FETCH_HEAD";
      ls = "ls-files";
      st = "status -sb";
      ci = "commit";
      br = "branch";
      co = "checkout";
      sw = "switch";
      rs = "restore";
      lasttag = "!sh -c 'git tag --sort=version:refname | grep \"^v\\\\?[0-9]\" | tail -n1'";
      pending = "!sh -c 'git log --oneline --grep=\"#\" ...$(git lasttag)'";
      lg = "log --pretty=format:'%Cred%h%Creset -%Creset %s %Cgreen(%cr) %C(bold blue)<%an> %Cred%d%Creset'";
      ignored = "ls-files --others -i --exclude-standard";
      clear = "clear-soft";
      clear-hard = "!git-clear-hard";
      dlog = "-c diff.external=difft log --ext-diff";
      dshow = "-c diff.external=difft show --ext-diff";
      ddiff = "-c diff.external=difft diff";
      dl = "dlog";
      ds = "dshow";
      dt = "ddiff";
    };
    ignores = [
      ".DS_Store"
      "*_flymake.*"
      "*~"
      "\#*\#"
      ".\#*"
      ".tabnine_root"
      ".dir-locals.el"
    ];
  };
  home.packages = with pkgs; [
    ghq
    gst
  ];
}