Install some useful utilities using the appropriate package manager.
sudo apt install -y git vim tree curl tmux parallel
sudo pacman -S git vim tree curl tmux parallel
sudo zypper install -y git vim tree curl tmux gnu_parallelInstall pixi to help manage conda environments and packages.
curl -fsSL https://pixi.sh/install.sh | shCreate an ed25519 key for SSH with a passphrase.
ssh-keygen -t ed25519 -f .ssh/id_ed25519Deploy the dotfiles in this repo and logout. Dotfiles will be loaded on the next login.
cd $HOME
git clone --bare https://github.com/ckandoth/dotfiles.git .dotfiles
alias dotfiles="/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME"
dotfiles checkout --force
exit