From 58ac026ff224dfc7dead1c5f0f0beacb876da2a1 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 10 Aug 2023 21:16:10 -0400 Subject: [PATCH] setting up a new wsl vm --- README.md | 18 ++++++++++-------- home/run_once_install-packages.sh.tmpl | 12 ++++++++++++ 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 6dabaf5..d266b53 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ ```bash # debian sudo hostnamectl set-hostname $MY_HOSTNAME.local +# or edit /etc/hostname on wsl, since no systemd # macos sudo scutil --set HostName $MY_HOSTNAME.local @@ -13,17 +14,11 @@ sudo scutil --set ComputerName $MY_HOSTNAME dscacheutil -flushcache # maybe reboot, too? ``` -2) set the shell (linux-only): +2) set up the package manager and bootstrap dependencies: ```bash # debian -chsh -s $(which zsh) -``` - -3) set up the package manager: - -```bash -# debian - nothing to do here +sudo apt install curl zsh git # macos xcode-select --install @@ -31,6 +26,13 @@ xcode-select --install # TODO: is there a reasonable unattended install workflow for macports? ``` +3) set the shell (linux-only): + +```bash +# debian +chsh -s $(which zsh) +``` + 4) install a patched font, [Anonymice Pro](https://www.nerdfonts.com/font-downloads). size 16 or 17, no anti-aliasing 5) install `age` private key from password manager into `~/.key.txt` diff --git a/home/run_once_install-packages.sh.tmpl b/home/run_once_install-packages.sh.tmpl index 86a9222..59a987d 100644 --- a/home/run_once_install-packages.sh.tmpl +++ b/home/run_once_install-packages.sh.tmpl @@ -27,4 +27,16 @@ sudo port install \ wget \ zellij \ zsh +{{ else if eq .chezmoi.hostname "spleen" -}} +#!/bin/sh +sudo apt install \ + ripgrep \ + tmux \ + tree \ + wget \ + -y + +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o /rustup.sh && chmod u+x /rustup.sh && /rustup.sh -y +git clone https://github.com/helix-editor/helix.git /helix +export PATH=$PATH:$HOME/.cargo/bin && cargo install --path helix-term && hx --grammar fetch && hx --grammar build {{ end }}