17 lines
524 B
Bash
17 lines
524 B
Bash
#!/usr/bin/env bash
|
|
|
|
{{ if (and (eq .chezmoi.os "linux") (eq .chezmoi.osRelease.id "fedora") -}}
|
|
sudo dnf install gpg git curl wget ripgrep fd-find unzip util-linux util-linux-user python3-pip cargo htop -y
|
|
sudo dnf install fish neovim -y
|
|
|
|
fish -c "curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source && fisher install jorgebucaran/fisher"
|
|
|
|
fish -c "fish_add_path -U ~/.local/bin"
|
|
fish -c "fish_add_path -U ~/.cargo/bin"
|
|
|
|
chsh -s /usr/bin/fish
|
|
|
|
cargo install atuin
|
|
{{ end -}}
|
|
|