-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinstall.conf.yaml
141 lines (123 loc) · 3.6 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
---
- clean:
- '~'
- '~/.aws'
- '~/.cache/babel/'
- '~/.config'
- '~/.config/alacritty'
- '~/.config/asdf'
- '~/.config/aws'
- '~/.config/brew'
- '~/.config/clj-kondo'
- '~/.config/fish'
- '~/.config/fish/completions'
- '~/.config/fish/conf.d'
- '~/.config/fish/functions'
- '~/.config/git'
- '~/.config/karabiner'
- '~/.config/neofetch'
- '~/.config/npm'
- '~/.config/starship'
- '~/.config/tmux'
- '~/.gnupg'
- '~/.local/share/history'
- '~/.ssh'
- '~/.ssh/config.d'
- '~/Library/Application Support/pypoetry'
- '~/Library/LaunchAgents'
- defaults:
link:
create: true
force: true
relink: true
- create:
- '~/.cache/babel/'
- '~/.cache/bundle'
- '~/.cache/gem'
- '~/.cache/less'
- '~/.cache/npm'
- '~/.cache/pip'
- '~/.config'
- '~/.local/bin'
- '~/.local/share/aws'
- '~/.local/share/bundle'
- '~/.local/share/gem'
- '~/.local/share/gradle'
- '~/.local/share/history'
- '~/.local/share/less'
- '~/.local/share/password-store'
- '~/.local/share/stack'
- '~/.local/share/vimfiles'
- link:
~/.editorconfig: .editorconfig
~/.config/clj-kondo/config.edn: clj-kondo/config.edn
~/.config/brew/Brewfile: brew/Brewfile
~/.config/asdf/.asdfrc: asdf/.asdfrc
~/.config/npm/.npmrc: npm/.npmrc
'~/Library/Application Support/pypoetry/config.toml':
path: poetry/config.toml
if: "uname -s | grep --quiet --ignore-case darwin"
# Fish shell config files
~/.config/fish/config.fish: fish/config.fish
~/.config/fish/fishfile: fish/fishfile
~/.config/fish/conf.d:
path: fish/conf.d/*.fish
glob: true
~/.config/fish/functions:
path: fish/functions/*.fish
glob: true
~/.config/fish/completions:
path: fish/completions/*.fish
glob: true
# Vim config files
~/.vimrc: vim/.vimrc
# Git config files
~/.config/git/attributes: git/.gitattributes
~/.config/git/config: git/.gitconfig
~/.config/git/ignore: git/.gitignore
# Git extra config
~/.config/git/.gitconfig-forter:
path: git/.gitconfig-forter
if: 'test -d ~/dev/forter'
~/.config/git/.gitconfig-personal: git/.gitconfig-personal
# Tmux config files
~/.config/tmux/tmux.conf: tmux/.tmux.conf
~/.config/tmux/tmux-right-prompt.sh: tmux/tmux-right-prompt.sh
# GPG files
~/.gnupg/gpg.conf: gpg/gpg.conf
~/.gnupg/gpg-agent.conf:
path: gpg/gpg-agent.conf
if: "uname -s | grep --quiet --ignore-case darwin"
# SSH files
~/.ssh/config: ssh/config
# ~/.ssh/config.d:
# path: ssh/config.d/*
# glob: true
~/.ssh/config.d/pi:
path: ssh/config.d/pi
~/.ssh/config.d/github-forter:
path: ssh/config.d/github-forter
if: 'test -d ~/dev/forter'
~/.ssh/config.d/github-personal:
path: ssh/config.d/github-personal
if: '! test -d ~/dev/forter'
# Karabiner
~/.config/karabiner/karabiner.json:
path: karabiner/karabiner.json
if: "uname -s | grep --quiet --ignore-case darwin"
# Hammerspoon
~/.config/hammerspoon:
path: hammerspoon
if: "uname -s | grep --quiet --ignore-case darwin"
# Alacritty
~/.config/alacritty/alacritty.toml:
path: alacritty/alacritty.toml
if: "uname -s | grep --quiet --ignore-case darwin"
# Neofetch
~/.config/neofetch/config.conf: neofetch/config.conf
~/.config/starship/starship.toml: starship/starship.toml
- shell:
- command: ./scripts/install-dein.sh
stderr: true
- command: ./scripts/post.sh
stderr: true