-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.chezmoiexternal.toml
57 lines (45 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
[".local/bin/eza"]
type = "archive-file"
path = "eza"
{{ if eq .osid "darwin" }}
url = "https://github.com/cargo-bins/cargo-quickinstall/releases/download/eza-0.20.18/eza-0.20.18-aarch64-apple-darwin.tar.gz"
{{ else }}
stripComponents = 1
url = "https://github.com/eza-community/eza/releases/download/v0.20.18/eza_x86_64-unknown-linux-gnu.tar.gz"
{{ end }}
[".local/bin/rg"]
type = "archive-file"
stripComponents = 1
path = "rg"
{{ if eq .osid "darwin" }}
url = "https://github.com/BurntSushi/ripgrep/releases/download/14.1.0/ripgrep-14.1.0-aarch64-apple-darwin.tar.gz"
{{ else }}
url = "https://github.com/BurntSushi/ripgrep/releases/download/14.1.0/ripgrep-14.1.0-x86_64-unknown-linux-musl.tar.gz"
{{ end }}
[".local/share/man/man1/rg.1"]
type = "archive-file"
stripComponents = 1
path = "doc/rg.1"
url = "https://github.com/BurntSushi/ripgrep/releases/download/14.1.0/ripgrep-14.1.0-x86_64-unknown-linux-musl.tar.gz"
[".local/bin/fd"]
type = "archive-file"
stripComponents = 1
path = "fd"
{{ if eq .osid "darwin" }}
url = "https://github.com/sharkdp/fd/releases/download/v10.2.0/fd-v10.2.0-aarch64-apple-darwin.tar.gz"
{{ else }}
url = "https://github.com/sharkdp/fd/releases/download/v10.2.0/fd-v10.2.0-x86_64-unknown-linux-gnu.tar.gz"
{{ end }}
[".local/share/man/man1/fd.1"]
type = "archive-file"
stripComponents = 1
path = "fd.1"
url = "https://github.com/sharkdp/fd/releases/download/v9.0.0/fd-v9.0.0-x86_64-unknown-linux-gnu.tar.gz"
[".local/bin/direnv"]
type = "file"
executable = true
{{ if eq .osid "darwin" }}
url = "https://github.com/direnv/direnv/releases/download/v2.35.0/direnv.darwin-arm64"
{{ else }}
url = "https://github.com/direnv/direnv/releases/download/v2.35.0/direnv.linux-amd64"
{{ end }}