-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.conf.yaml
109 lines (95 loc) · 2.61 KB
/
install.conf.yaml
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
98
99
100
101
102
103
104
105
106
107
108
109
- defaults:
link:
relink: true
clean:
force: true
- clean:
~/:
~/Library/Application Support/Code/User/:
recursive: true
~/.config:
recursive: true
- create:
- ~/.vim/undo-history
- ~/.nvm
- ~/.config
- ~/.config/pip
- ~/.config/direnv
- ~/.config/kitty
- ~/.config/lsd
- ~/.config/iterm2
- ~/.config/gitui
- ~/.config/bat
- ~/.kube
- ~/.kube/configs
- ~/.local/bin/
- /usr/local/lib/jvm
- /usr/local/lib/gnubin
- link:
~/:
glob: true
path: etc/.*
~/.local/bin/:
glob: true
path: bin/*
~/.local/bin/dotbot: dotbot/bin/dotbot
~/.zshrc: shell/zsh/.zshrc
~/.zshenv: shell/zsh/.zshenv
~/.p10k.zsh: shell/zsh/themes/p10k.zsh
~/.zimrc: shell/zsh/.zim/.zimrc
~/.gitignore: git/.gitignore
~/.gitconfig.local: git/.gitconfig.local
~/.Brewfile: os/mac/brew/Brewfile
~/.vimrc: editors/vim/.vimrc
~/.config/direnv/lib: tools/direnv/lib
~/.config/pip/pip.conf: langs/python/pip.conf
~/.config/kitty/kitty.conf: tools/kitty/kitty.conf
~/.config/lsd/config.yaml: tools/lsd/config.yaml
~/.config/bat/config: tools/bat/config
~/.config/gitui/theme.ron: tools/gitui/theme.ron
~/.config/btop: tools/btop
~/.config/k9s: tools/k9s
/usr/local/lib/jvm/java: ~/.asdf/installs/java
~/Library/Application Support/Code/User/:
create: true
glob: true
path: editors/vscode/*.json
relink: true
force: true
if: '[ `uname` = Darwin ]'
~/Library/Application Support/Code/User/snippets:
create: true
path: editors/vscode/snippets
relink: true
force: true
if: '[ `uname` = Darwin ]'
~/.config/Code/User/:
create: true
glob: true
path: editors/vscode/*.json
relink: true
if: '[ `uname` != Darwin ]'
~/.config/Code/User/snippets:
create: true
path: editors/vscode/snippets
relink: true
if: '[ `uname` != Darwin ]'
- shell:
- command: git submodule update --init --recursive
description: Installing submodules
- command: chmod +x ./scripts/*
description: Making ./scripts executable
- command: chmod +x ./bin/*
description: Making ./bin executable
- command: ./scripts/install
description: Running installers
stdin: true
stdout: true
- command: ./scripts/configure
description: Running configurators
stdin: true
stdout: true
- command: git config --global dotfiles.lastupdate "$(date +%Y-%m-%d-%H:%M)"
description: Register last update
stdin: true
stdout: true