-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
171 lines (170 loc) · 4.13 KB
/
config.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
config:
backup: true
banner: false
create: true
diff_command: icdiff -N --no-bold -U 3 {1} {0}
dotpath: dotfiles-store
keepdot: false
link_dotfile_default: nolink
link_on_import: nolink
longkey: true
showdiff: true
workdir: ~/.config/dotdrop
minversion: 1.14.0
variables:
dotdrop_passphrase_file: "{{@@ env['DOTDROP_PASSPHRASE_FILE'] @@}}"
dotfiles:
f_gitconfig:
src: gitconfig
dst: ~/.gitconfig
chmod: '644'
f_bashrc:
src: bashrc
dst: ~/.bashrc
chmod: '644'
f_bash_envvars:
src: bash_envvars
dst: ~/.bash_envvars
chmod: '644'
f_bash_aliases:
src: bash_aliases
dst: ~/.bash_aliases
chmod: '644'
f_bash_functions:
src: bash_functions
dst: ~/.bash_functions
chmod: '644'
f_profile:
src: profile
dst: ~/.profile
chmod: '664'
f_bash_logout:
src: bash_logout
dst: ~/.bash_logout
chmod: '644'
f_install_script.sh:
src: install_script.sh
dst: ~/install_script.sh
chmod: '755'
f_vimrc:
src: vimrc
dst: ~/.vimrc
chmod: '644'
f_ideavimrc:
src: ideavimrc
dst: ~/.ideavimrc
chmod: '644'
f_vim_colors_solarized.vim:
src: vim/colors/solarized.vim
dst: ~/.vim/colors/solarized.vim
chmod: '644'
f_tmux.conf:
src: tmux.conf
dst: ~/.tmux.conf
chmod: '644'
f_ssh_rc:
src: ssh/rc
dst: ~/.ssh/rc
chmod: '644'
f_ssh_config:
src: ssh/config
dst: ~/.ssh/config
chmod: '600'
f_material-solarized-dark_custom-ide.xml:
src: Material-Solarized-Dark_Custom-IDE.xml
dst: ~/Material-Solarized-Dark_Custom-IDE.xml
chmod: '644'
f_material-solarized-dark_custom-editor.icls:
src: Material-Solarized-Dark_Custom-Editor.icls
dst: ~/Material-Solarized-Dark_Custom-Editor.icls
chmod: '644'
f_ssh_rpi_id_rsa:
src: ssh/RPi/id_rsa
dst: ~/.ssh/RPi/id_rsa
chmod: '600'
trans_install: _gpg_priv
f_ssh_rpi_id_rsa.pub:
src: ssh/RPi/id_rsa.pub
dst: ~/.ssh/RPi/id_rsa.pub
chmod: '644'
trans_install: _gpg_pub
f_config_joplin-desktop_userstyle.css:
src: config/joplin-desktop/userstyle.css
dst: ~/.config/joplin-desktop/userstyle.css
chmod: '644'
f_config_joplin-desktop_userchrome.css:
src: config/joplin-desktop/userchrome.css
dst: ~/.config/joplin-desktop/userchrome.css
chmod: '644'
f_dotdrop_tester.sh:
src: dotdrop_tester.sh
dst: ~/dotdrop_tester.sh
chmod: '755'
f_ssh_readme:
src: ssh/README
dst: ~/.ssh/README
chmod: '644'
f_config_lazygit_config.yml:
src: config/lazygit/config.yml
dst: ~/.config/lazygit/config.yml
chmod: '644'
f_local_bin_aws-sts-refresh:
src: local/bin/aws-sts-refresh
dst: ~/.local/bin/aws-sts-refresh
chmod: '764'
profiles:
base:
dotfiles:
- f_gitconfig
- f_bashrc
- f_bash_envvars
- f_bash_aliases
- f_bash_functions
- f_profile
- f_bash_logout
- f_install_script.sh
- f_vimrc
- f_vim_colors_solarized.vim
- f_tmux.conf
- f_dotdrop_tester.sh
- f_config_lazygit_config.yml
worklaptop:
include:
- base
dotfiles:
- f_ideavimrc
- f_ssh_config
- f_material-solarized-dark_custom-ide.xml
- f_material-solarized-dark_custom-editor.icls
- f_ssh_rpi_id_rsa
- f_ssh_rpi_id_rsa.pub
- f_config_joplin-desktop_userstyle.css
- f_config_joplin-desktop_userchrome.css
- f_ssh_readme
- f_local_bin_aws-sts-refresh
workremote:
include:
- base
dotfiles:
- f_ssh_config
- f_ssh_rc
rpiremote:
include:
- base
homelaptop:
include:
- base
dotfiles:
- f_ideavimrc
- f_material-solarized-dark_custom-ide.xml
- f_material-solarized-dark_custom-editor.icls
- f_ssh_config
- f_ssh_rpi_id_rsa
- f_ssh_rpi_id_rsa.pub
- f_config_joplin-desktop_userstyle.css
- f_config_joplin-desktop_userchrome.css
trans_install:
_gpg_priv: gpg --batch --yes --passphrase-file {{@@ dotdrop_passphrase_file @@}}
-q --for-your-eyes-only --no-tty -d {0} > {1} && chmod 600 {1}
_gpg_pub: gpg --batch --yes --passphrase-file {{@@ dotdrop_passphrase_file @@}}
-q --for-your-eyes-only --no-tty -d {0} > {1} && chmod 644 {1}