mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-14 04:03:50 +01:00
add makefile
This commit is contained in:
parent
305da07408
commit
453d86d64d
1 changed files with 24 additions and 0 deletions
24
Makefile
Normal file
24
Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
# this includes some scripts to set up the environment quickly
|
||||
|
||||
RUST_PROGRAMS=\
|
||||
alacritty \
|
||||
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)
|
Loading…
Reference in a new issue