blob: f7aeb2798f343df133d596f1df9d1c86abae790c (
plain) (
blame)
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
|
{
programs.git = {
enable = true;
aliases = {
s = "status --short --branch";
amend = "commit --amend --no-edit";
};
extraConfig = {
core.whitespace = "trailing-space,space-before-tab";
color.ui = "true";
push.default = "simple";
init.defaultBranch = "main";
branch.autosetuprebase = "remote";
branch.sort = "authordate";
};
userName = "Franck Cuny";
userEmail = "franck@fcuny.net";
ignores = [
"*.elc"
"*.iml"
"*.o"
"*.pyc"
"*.pyo"
"*pyc"
"*~"
".DS_Store"
".\\#"
".dir-locals.el"
".direnv/*"
".idea"
".projectile"
".pytest_cache/"
"/env/*"
"Icon"
"TAGS"
"\\#*\\#"
"tags"
];
};
}
|