-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (25 loc) · 671 Bytes
/
Makefile
File metadata and controls
34 lines (25 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
all: config brew cli git helix nvm zsh gpg rust
brew:
@bash -c "$$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
cli: brew
brew install ripgrep gh marksman superhtml
config:
mkdir -p ~/.config
nvm:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
gpg: brew
cp -rn gpg-agent.conf ~/.gnupg
brew install gpg
git:
cp -n .gitconfig ~/
cp -n .gitignore ~/.config
helix: brew config
cp -rn helix ~/.config
brew install helix
zsh:
cp -n .zprofile ~/
cp -n .zshrc ~/
cp -n .ripgreprc ~/
rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup component add rust-analyzer