misc wsl edits

This commit is contained in:
Matthew Ryan Dillon 2023-08-14 06:48:26 -04:00
parent a5ff4922ed
commit 25931051a8
2 changed files with 9 additions and 4 deletions

View file

@ -5,7 +5,7 @@
```bash
# debian
sudo hostnamectl set-hostname $MY_HOSTNAME.local
# or edit /etc/hostname on wsl, since no systemd
# or don't worry about it on WSL machines
# macos
sudo scutil --set HostName $MY_HOSTNAME.local
@ -18,6 +18,7 @@ dscacheutil -flushcache # maybe reboot, too?
```bash
# debian
sudo apt update
sudo apt install curl zsh git
# macos
@ -33,7 +34,9 @@ xcode-select --install
chsh -s $(which zsh)
```
4) install a patched font, [Anonymice Pro](https://www.nerdfonts.com/font-downloads). size 16 or 17, no anti-aliasing
4) install a patched font, [Anonymice Pro](https://www.nerdfonts.com/font-downloads).
- wsl: size 11
- macos: size 16 or 17, no anti-aliasing
5) install `age` private key from password manager into `~/.key.txt`

View file

@ -39,6 +39,8 @@ sudo apt install \
-y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o /tmp/rustup.sh && chmod u+x /tmp/rustup.sh && /tmp/rustup.sh -y && rustup update stable
git clone https://github.com/helix-editor/helix.git --branch 23.05 /tmp/helix
export PATH=$PATH:$HOME/.cargo/bin && cd /tmp/helix && cargo install --path helix-term --locked && hx --grammar fetch && hx --grammar build
git clone https://github.com/helix-editor/helix.git --branch 23.05 $HOME/.src/helix
export PATH=$PATH:$HOME/.cargo/bin && cd $HOME/.src/helix && cargo install --path helix-term --locked && hx --grammar fetch && hx --grammar build
git clone ssh://git@pingo.thermokar.st/gwar $HOME/.src/gwar && cd $HOME/.src/gwar && cargo build --release && cp target/release/gwar ~/bin
{{ end }}