Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .chezmoiscripts/run_once_after_99_misc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,9 @@
mkdir -p "${XDG_STATE_HOME:-$HOME/.state}/zsh/"
bat cache --build
tldr --update

# Generate fzf zsh integration — the zshrc sources $ZDOTDIR/fzf-completion.zsh
# conditionally, so this file defines the keybindings and completion.
ZDOTDIR="${ZDOTDIR:-${XDG_CONFIG_HOME:-$HOME/.config}/zsh}"
mkdir -p "$ZDOTDIR"
fzf --zsh >"$ZDOTDIR/fzf-completion.zsh"
53 changes: 53 additions & 0 deletions .chezmoiscripts/run_once_before_00_init.sh.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ brew "coreutils"
brew "crane"
brew "curl"
brew "dive"
brew "dog"
brew "dust"
brew "eza"
brew "fd"
Expand Down Expand Up @@ -170,5 +171,57 @@ EOF
echo "Package installation completed."


# shellcheck disable=1054,1083
{{ end -}}

# shellcheck disable=1054,1083
{{- if eq .chezmoi.os "linux" }}
# Linux has no brew; bootstrap Rust and `cargo install` the CLIs that mirror
# the macOS Brewfile. `cargo install` is idempotent — re-runs skip crates
# already at the installed version.
if ! command -v cargo &>/dev/null; then
echo "🦀 Installing Rust toolchain"
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
| sh -s -- --default-toolchain stable --no-modify-path -y
fi
# shellcheck disable=SC1091
source "$HOME/.cargo/env"

echo "📦 Installing Rust CLIs via cargo install"
cargo install --locked \
bat \
broot \
du-dust \
eza \
fd-find \
git-delta \
ripgrep \
tealdeer \
zoxide

# fzf is Go (not on crates.io); fetch the upstream release into ~/.local/bin.
if ! command -v fzf &>/dev/null; then
echo "📦 Installing fzf"
mkdir -p "$HOME/.local/bin"
FZF_VERSION=$(curl -fsSL https://api.github.com/repos/junegunn/fzf/releases/latest \
| grep -m1 '"tag_name":' | sed 's/.*"v\(.*\)".*/\1/')
curl -fsSL "https://github.com/junegunn/fzf/releases/download/v${FZF_VERSION}/fzf-${FZF_VERSION}-linux_amd64.tar.gz" \
| tar -xz -C "$HOME/.local/bin"
fi

# dog (DNS client) isn't on crates.io; fetch the upstream release. Only v0.1.0
# exists — the project has been dormant since 2020.
if ! command -v dog &>/dev/null; then
echo "📦 Installing dog"
command -v unzip &>/dev/null || sudo apt-get install -y -qq unzip
mkdir -p "$HOME/.local/bin"
tmp=$(mktemp -d)
curl -fsSL "https://github.com/ogham/dog/releases/download/v0.1.0/dog-v0.1.0-x86_64-unknown-linux-gnu.zip" \
-o "$tmp/dog.zip"
unzip -q "$tmp/dog.zip" -d "$tmp"
install -m 0755 "$tmp/bin/dog" "$HOME/.local/bin/dog"
rm -rf "$tmp"
fi

# shellcheck disable=1054,1083
{{ end -}}
Loading