-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.mrconfig
97 lines (59 loc) · 2.48 KB
/
git.mrconfig
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
# -*- mode: conf; -*-
#
# This mrconfig file is meant to pull (or rather, clone) in everything I need
# under $HOME to get started.
[DEFAULT]
jobs = 5
# sync is only for git-annex repositories, thus it should be skipped here
skip = [[ "$1" == sync ]]
# other people's GitHub repositories
[.oh-my-zsh]
checkout = git clone 'https://github.com/robbyrussell/oh-my-zsh.git' '.oh-my-zsh'
# order is important b/c of the .oh-my-zsh directory already existing otherwise (default: 10)
order = 1
# only ever update this (never try to push automatedly)
skip = [[ ! "$1" == update ]]
[.oh-my-zsh/custom/plugins/git-annex]
checkout = git clone 'https://github.com/Schnouki/git-annex-zsh-completion.git' 'git-annex'
# must be checked out after .oh-my-zsh
order = 10
# only ever update this (never try to push automatedly)
skip = [[ ! "$1" == update ]]
[.zsh/z]
checkout = git clone 'https://github.com/rupa/z.git' '.zsh/z'
# only ever update this (never try to push automatedly)
skip = [[ ! "$1" == update ]]
# my own GitHub repositories
[NixOS]
checkout = git clone 'https://github.com/dpaetzel/nixos-config.git' 'NixOS'
[Bin]
checkout = git clone 'https://github.com/dpaetzel/utility.git' 'Bin'
[.dotfiles]
checkout = git clone 'https://github.com/dpaetzel/dotfiles.git' '.dotfiles'
# need to update rc files twice b/c first update pulls in rcrc
post_checkout = rcup ; rcup
# must be checked out after .oh-my-zsh
order = 10
[.xmonad]
checkout = git clone 'https://github.com/dpaetzel/xmonad-config.git' '.xmonad'
# my own local git repositories
[.dotfiles-private]
checkout = git checkout /run/media/$USER/SEAGATE-MWQ/.dotfiles-private.git .dotfiles-private
fix = git fixremotes
post_checkout = rcup -d .dotfiles-private
post_update = rcup -d .dotfiles-private
# should be checked out after .dotfiles (so that .rcrc already exists)
order = 11
# other git repositories I'd like to keep checked out
[Code/biblatex-check]
checkout = git clone 'https://github.com/pezmc/biblatex-check' 'biblatex-check'
[Code/gmail-oauth2-tools]
checkout = git clone 'https://github.com/dpaetzel/gmail-oauth2-tools' 'gmail-oauth2-tools'
[Code/myrepos]
checkout = git clone 'https://git.joeyh.name/git/myrepos.git/' 'myrepos'
[Code/nixpkgs]
checkout = git clone 'https://github.com/dpaetzel/nixpkgs.git' 'nixpkgs'
[Code/pointless-xcompose]
checkout = git clone 'https://github.com/rrthomas/pointless-xcompose.git' 'pointless-xcompose'
[Code/Zahlengerade]
checkout = git clone 'https://github.com/dpaetzel/Zahlengerade.git' 'Zahlengerade'