From 4b2490c4aa201d679e3344399c92ec5c25e6dec2 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Thu, 6 Nov 2025 17:03:11 -0500 Subject: [PATCH] Add install step for setting up nerdfont --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 805f137..5e71039 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,12 @@ container: .PHONY: container scripts: + mkdir --parents ~/.local/share/fonts/ + curl -sSLo ~/.local/share/fonts/nerdfont.zip https://github.com/ryanoasis/nerd-fonts/releases/download/v3.4.0/AdwaitaMono.zip + unzip -o ~/.local/share/fonts/nerdfont.zip -d ~/.local/share/fonts/ + rm ~/.local/share/fonts/nerdfont.zip + fc-cache -f -v + mkdir --parents ~/.local/bin curl -sSo /tmp/starship.sh https://starship.rs/install.sh sh /tmp/starship.sh --yes --bin-dir=$(HOME)/.local/bin