-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.chezmoiexternal.toml
45 lines (37 loc) · 1.42 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
[".local/share/nvim/lazy/lazy.nvim"]
type = "git-repo"
url = "https://github.com/folke/lazy.nvim.git"
stripComponents = 1
clone.args = ["--filter=blob:none"]
{{ if or .codespaces .wsl .ubuntu }}
{{ $ezaVersion := "v0.20.2" -}}
[".local/bin/eza"]
type = "archive-file"
url = "https://github.com/eza-community/eza/releases/download/{{ $ezaVersion }}/eza_x86_64-unknown-linux-musl.zip"
path = "eza"
{{ $zellijVersion := "v0.41.1" -}}
[".local/bin/zellij"]
type = "archive-file"
url = "https://github.com/zellij-org/zellij/releases/download/{{ $zellijVersion }}/zellij-x86_64-unknown-linux-musl.tar.gz"
path = "zellij"
{{ $fzfVersion := "0.55.0" -}}
[".local/bin/fzf"]
type = "archive-file"
url = "https://github.com/junegunn/fzf/releases/download/v{{ $fzfVersion }}/fzf-{{ $fzfVersion }}-linux_amd64.tar.gz"
path = "fzf"
[".config/zplug"]
type = "git-repo"
url = "https://github.com/zplug/zplug.git"
{{ end }}
{{ if .codespaces }}
[".local/bin/rdm"]
type = "file"
url = "https://github.com/BlakeWilliams/remote-development-manager/releases/latest/download/rdm-linux-amd64"
executable = true
[".config/private.nvim"]
type = "git-repo"
url = "https://franciscoj:{{.private_nvim_github_token}}@github.com/franciscoj/private.nvim"
[".zshrc_local"]
type = "file"
url = "https://franciscoj:{{.private_zsh_github_token}}@raw.githubusercontent.com/franciscoj/private.zsh/master/{{.codespaces_repo}}/zshrc_local"
{{ end }}