-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.conf.yaml
More file actions
58 lines (55 loc) · 1.44 KB
/
install.conf.yaml
File metadata and controls
58 lines (55 loc) · 1.44 KB
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
- defaults:
link:
create: true
relink: true
relative: false
- clean: ['~']
- link:
~/.bashrc:
path: link/.bashrc
force: true
~/.bash_profile:
path: link/.bash_profile
force: true
~/.zshrc:
path: link/.zshrc
force: true
~/:
glob: true
path: link/.*
~/.config/btop/btop.conf: link/btop.conf
~/.config/nvim: nvim
~/.config/ghostty/config: config/ghostty
~/.config/k9s:
path: config/k9s
if: '[ `uname` != Darwin ]'
~/Library/Application Support/k9s:
path: config/k9s
if: '[ `uname` = Darwin ]'
~/.config/git: config/git
- shell:
- description: Configure vim plugins
command: '[ -f offline ] || scripts/vim-plug.sh'
stdin: true
stdout: true
- description: Install tmux plugins
command: '! command -v tmux || [ -f offline ] || link/.tmux/plugins/tpm/bin/install_plugins'
stdout: true
- description: Initialize condarc
command: >
if [ ! -e ~/.condarc ]; then
cp config/condarc ~/.condarc
fi
quiet: true
- description: Initialize karabiner config
command: >
if [ ! -e ~/.config/karabiner/karabiner.json ]; then
cp config/karabiner.json ~/.config/karabiner/
fi
quiet: true
- description: Initialize local gitconfig
command: >
if [ ! -e ~/.gitconfig_local ]; then
cp config/gitconfig_local ~/.gitconfig_local
fi
quiet: true