-
Notifications
You must be signed in to change notification settings - Fork 1
/
.chezmoiexternal.yaml
35 lines (35 loc) · 1.3 KB
/
.chezmoiexternal.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
---
.oh-my-zsh:
type: archive
url: https://github.com/ohmyzsh/ohmyzsh/archive/master.tar.gz
extract: true
stripComponents: 1
refreshPeriod: 168h
.oh-my-zsh/custom/plugins/zsh-syntax-highlighting:
type: archive
url: "https://github.com/zsh-users/zsh-syntax-highlighting/archive/master.tar.gz"
exact: true
stripComponents: 1
refreshPeriod: "168h"
.oh-my-zsh/custom/plugins/zsh-autosuggestions:
type: archive
url: "https://github.com/zsh-users/zsh-autosuggestions/archive/refs/tags/v0.7.0.tar.gz"
exact: true
stripComponents: 1
{{- if and (eq .chezmoi.os "linux") .personal (not .ephemeral) }}
{{- $ageVersion := "1.0.0" }}
.local/bin/age:
type: "file"
url: "https://github.com/FiloSottile/age/releases/download/v{{ $ageVersion }}/age-v{{ $ageVersion }}-{{ .chezmoi.os }}-{{ .chezmoi.arch }}.tar.gz"
executable: true
.local/bin/age.filter:
command: "tar"
args: ["--extract", "--file", "/dev/stdin", "--gzip", "--to-stdout", "age/age"]
.local/bin/age-keygen:
type: "file"
url: "https://github.com/FiloSottile/age/releases/download/v{{ $ageVersion }}/age-v{{ $ageVersion }}-{{ .chezmoi.os }}-{{ .chezmoi.arch }}.tar.gz"
executable: true
.local/bin/age-keygen.filter:
command: tar
args: ["--extract", "--file", "/dev/stdin", "--gzip", "--to-stdout", "age/age-keygen"]
{{- end }}