1
0
Fork 0
mirror of https://mzte.de/git/LordMZTE/dotfiles.git synced 2024-12-15 07:43:41 +01:00
dotfiles/Makefile

26 lines
397 B
Makefile
Raw Normal View History

2021-03-26 18:06:46 +01:00
# this includes some scripts to set up the environment quickly
RUST_PROGRAMS=\
alacritty \
2021-03-26 18:32:32 +01:00
bat \
2021-03-26 18:06:46 +01:00
cargo-edit \
gitui \
lsd \
mask \
miniserve \
onefetch \
rg \
starship \
tiny \
tokei \
zoxide
.PHONY: install_rust_programs
.PHONY: install_rustup
install_rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
install_rust_programs:
cargo install $(RUST_PROGRAMS)