Skip to content

Instantly share code, notes, and snippets.

@rohityadavcloud
Last active October 10, 2025 18:11
Show Gist options
  • Save rohityadavcloud/f09ac789ee30b9e77aa4dcee74f77bce to your computer and use it in GitHub Desktop.
Save rohityadavcloud/f09ac789ee30b9e77aa4dcee74f77bce to your computer and use it in GitHub Desktop.
Fresh Ubuntu
sudo add-apt-repository universe
sudo apt install -y \
build-essential \
make \
vim tmux zsh git tig vim curl \
ca-certificates \
qemu-kvm virt-manager \
fastfetch \
ipython3 guake fonts-powerline
usermod -a -G libvirt rohit
systemctl enable --now libvirtd
# python 3.14
curl -LsSf https://astral.sh/uv/install.sh | sh
echo source $HOME/.local/bin/env >> ~/.aliasrc
#zsh setup
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
#add plugins in ~/.zshrc:
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
git config --global user.name "Rohit Yadav"
git config --global user.email "[email protected]"
git config --global init.defaultBranch main
ssh-keygen -t rsa -b 4096 -C "[email protected]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment