-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.chezmoiexternal.toml
46 lines (42 loc) · 1.36 KB
/
.chezmoiexternal.toml
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
[".vim/autoload/plug.vim"]
type = "file"
url = "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"
refreshPeriod = "168h"
# On darwin: see run_once_install_sheldon_darwin.sh.tmpl
{{- if eq .chezmoi.os "linux" }}
[".local/bin/sheldon"]
type = "archive-file"
path = "sheldon"
executable = true
{{- $sheldon_arch := ""}}
{{- if eq .chezmoi.arch "amd64" }}
{{- $sheldon_arch = "x86_64"}}
{{- else if eq .chezmoi.arch "arm64" }}
{{- $sheldon_arch = "aarch64"}}
{{- else }}
{{- $sheldon_arch = .chezmoi.arch }}
{{- end }}
url = "https://github.com/rossmacarthur/sheldon/releases/download/0.7.4/sheldon-0.7.4-{{ $sheldon_arch }}-unknown-linux-musl.tar.gz"
{{- end }}
[".local/bin/mise"]
type = "file"
executable = true
{{- $mise_os := "" }}
{{- if eq .chezmoi.os "darwin" }}
{{- $mise_os = "macos" }}
{{- else }}
{{- $mise_os = .chezmoi.os }}
{{- end }}
{{- $mise_arch := ""}}
{{- if eq .chezmoi.arch "amd64" }}
{{- $mise_arch = "x64"}}
{{- else }}
{{- $mise_arch = .chezmoi.arch }}
{{- end }}
url = "https://mise.jdx.dev/mise-latest-{{ $mise_os }}-{{ $mise_arch }}"
refreshPeriod = "168h"
[".local/bin/imgcat"]
type = "file"
executable = true
url = "https://iterm2.com/utilities/imgcat"
refreshPeriod = "168h"