Update vim to better vim and sort out clipboard stuff

This commit is contained in:
1jamesthompson1
2025-09-25 20:03:23 +12:00
parent ea2f41e009
commit 73ea02927c
2 changed files with 20 additions and 2 deletions

View File

@@ -22,7 +22,9 @@ echo ">>> Bootstrapping new Debian-like machine..."
# 1. Update package list and install essentials
echo ">>> Installing bash, tmux, and vim..."
sudo apt update
sudo apt install -y bash tmux vim git curl
# Remove minimal vim if installed, then install clipboard-enabled version
sudo apt remove -y vim || true
sudo apt install -y bash tmux vim-gtk3 git curl
# 2. Clone your dotfiles (bare repo style)
if [ ! -d "$HOME/.dotfiles" ]; then