-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
51 lines (51 loc) · 1.08 KB
/
config.json
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
{
"commands": [
{
"label": "Update brew",
"command": "brew update",
"sudo": false
},
{
"label": "Upgrade brews",
"command": "brew upgrade",
"sudo": false
},
{
"label": "Add brew bundle for brewfile support",
"command": "brew tap homebrew/bundle",
"sudo": false
},
{
"label": "Install formulas from brewfile",
"command": "brew bundle --file $DOTFILES/Brewfile",
"sudo": false
},
{
"label": "Setting macOs settings",
"command": "/bin/bash $DOTFILES/.macos",
"sudo": true
},
{
"label": "Setting iterm2 config",
"command": "/bin/bash $DOTFILES/iterm2/config",
"sudo": false
}
],
"symlinks": [
{
"label": "zsh config",
"src": "$DOTFILES/.zshrc",
"dest": "$HOME/.zshrc"
},
{
"label": "git config",
"src": "$DOTFILES/git/.gitconfig",
"dest": "$HOME/.gitconfig"
},
{
"label": "global gitignore file",
"src": "$DOTFILES/git/.gitignore",
"dest": "$HOME/.gitignore"
}
]
}