-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.conf.json
53 lines (53 loc) · 1.26 KB
/
install.conf.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
52
53
[
{
"defaults": {
"link": {
"create": true,
"relink": true,
"force": true
}
}
},
{
"clean": [
"~",
"~/.config"
]
},
{
"link": {
"~/.bashrc": "bashrc",
"~/.profile": "profile",
"~/.vimrc_background": "vimrc_background",
"~/.php_cs.global": "php_cs.global",
"~/.gitconfig": "git/gitconfig",
"~/.gitignore_global": "git/gitignore_global",
"~/.config/fish": "config/fish",
"~/.config/nvim": "config/nvim",
"~/.vim": "config/nvim",
"~/.config/nvim/vimrc": "config/nvim/init.vim",
"~/.config/base16-shell": "config/base16-shell",
"~/.config/bat": "config/bat",
"~/.omp.json": "omp.json",
"~/.tool-versions": "tool-versions",
"~/.pyenv/version": "pyenv/version",
"~/.config/Hyper/hyper.json": "config/Hyper/hyper.json",
"~/.tmux.conf": "tmux.conf"
}
},
{
"shell": [
{
"command": "git submodule update --init --recursive",
"description": "Installing/updating submodules"
},
{
"command": "./config/nvim/install",
"description": "Installing/updating Nvim plugins",
"stdout": true,
"stdin": true,
"stderr": true
}
]
}
]