Evie Litherland-Smith
7351508b12
Scripts to install neovim, direnv and FiraCode nerd fonts if missing Make file handles calling installers, can clean up after as well
7 lines
183 B
Bash
Executable file
7 lines
183 B
Bash
Executable file
mkdir -p $HOME/.fonts
|
|
cd $HOME/.fonts
|
|
curl -sSLO https://github.com/ryanoasis/nerd-fonts/releases/download/v3.0.0/FiraCode.zip
|
|
unzip FiraCode.zip -d FiraCode
|
|
rm FiraCode.zip
|
|
fc-cache
|