Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mtaron committed May 19, 2024
1 parent a3f3de1 commit c53d868
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 3 additions & 6 deletions home/.chezmoiexternal.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@
clone:
args: [ "--depth", "1" ]

{{ $direnv_version := (gitHubLatestRelease "direnv/direnv").TagName -}}
.local/bin/direnv:
type: file
url: https://github.com/direnv/direnv/releases/download/{{ $direnv_version }}/direnv.linux-amd64
url: {{ gitHubLatestReleaseAssetURL "direnv/direnv" "direnv.linux-amd64" | quote }}
executable: true

{{ $yq_version := (gitHubLatestRelease "mikefarah/yq").TagName -}}
.local/bin/yq:
type: archive-file
url: https://github.com/mikefarah/yq/releases/download/{{ $yq_version }}/yq_linux_amd64.tar.gz
url: {{ gitHubLatestReleaseAssetURL "mikefarah/yq" "yq_linux_amd64.tar.gz" | quote }}
path: ./yq_linux_amd64

{{ $mkcert_version := (gitHubLatestRelease "FiloSottile/mkcert").TagName -}}
Expand All @@ -31,10 +29,9 @@
url: https://github.com/FiloSottile/mkcert/releases/download/{{ $mkcert_version }}/mkcert-{{ $mkcert_version }}-linux-amd64
executable: true

{{ $pnpm_version := (gitHubLatestRelease "pnpm/pnpm").TagName -}}
.local/bin/pnpm:
type: file
url: https://github.com/pnpm/pnpm/releases/download/{{ $pnpm_version }}/pnpm-linux-x64
url: {{ gitHubLatestReleaseAssetURL "pnpm/pnpm" "pnpm-linux-x64" | quote }}
executable: true

{{ if .work -}}
Expand Down
2 changes: 2 additions & 0 deletions home/private_dot_config/private_zsh/zsh.d/install.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ install-vs-code()
ln --symbolic --force "$code_dir/resources/completions/zsh/_code" "$ZDOTDIR/completions/_code"

code --version
code --update-extensions
}

install-vs-code-insiders()
Expand All @@ -41,6 +42,7 @@ install-vs-code-insiders()
ln --symbolic --force "$code_dir/resources/completions/zsh/_code-insiders" "$ZDOTDIR/completions/_code-insiders"

code-insiders --version
code-insiders --update-extensions
}

# https://k3d.io/
Expand Down

0 comments on commit c53d868

Please sign in to comment.