Skip to content

Fedora 42 Workstation

First things first

Terminal window
sudo dnf update

GitHub

CLI

Terminal window
sudo dnf install gh

zsh

Terminal window
sudo dnf install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
# syntax highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# Powerleve10k
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k

~/.zshrc

Terminal window
plugins=(
git
zsh-autosuggestions
zsh-syntax-highlighting
history
command-not-found
)

dotfiles

VSCode

Terminal window
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\nautorefresh=1\ntype=rpm-md\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" | sudo tee /etc/yum.repos.d/vscode.repo > /dev/null
dnf check-update
sudo dnf install code # or code-insiders

Docker / Podman / Podman Desktop

Terminal window
sudo dnf install docker-cli containerd docker-compose docker-switch
sudo dnf install podman podman-docker
flatpak install flathub io.podman_desktop.PodmanDesktop

Others