aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/git.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-12 13:22:29 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-12 13:23:58 -0800
commit60da6bc47620681b557ea2d105df87b22382efcd (patch)
tree000a2c858a5bbcd9d0e9ed1c5bd57546420f65d0 /users/fcuny/git.nix
parenthome-manager: last typo (diff)
downloadinfra-60da6bc47620681b557ea2d105df87b22382efcd.tar.gz
home-manager: re-organize configuration for myself
Diffstat (limited to 'users/fcuny/git.nix')
-rw-r--r--users/fcuny/git.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/users/fcuny/git.nix b/users/fcuny/git.nix
deleted file mode 100644
index f7aeb27..0000000
--- a/users/fcuny/git.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- 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"
- ];
- };
-}