-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
77 lines (61 loc) · 1.76 KB
/
Makefile
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
.PHONY: help brew_install git_install zsh_install tmux_install nvim_install bin_install dev_install alacritty_install bat_install iterm2_install kitty_install pgcli_install vifm_install bootstrap
help:
@echo 'Available targets:'
@echo ' make brew_install'
@echo ' make git_install'
@echo ' make zsh_install'
@echo ' make tmux_install'
@echo ' make nvim_install'
@echo ' make bin_install'
@echo ' make dev_install'
@echo ' make alacritty_install'
@echo ' make bat_install'
@echo ' make iterm2_install'
@echo ' make kitty_install'
@echo ' make pgcli_install'
@echo ' make vifm_install'
@echo ' make bootstrap Install all configs'
brew_install:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
cd ~/.dotfiles/brew/.config/brew
brew bundle
git_install:
cd ~/.dotfiles && stow -v git
zsh_install:
cd ~/.dotfiles && stow -v zsh
git clone https://github.com/zplug/zplug ~/.zplug
tmux_install:
cd ~/.dotfiles && stow -v tmux
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
nvim_install:
cd ~/.dotfiles && stow -v nvim
bin_install:
cd ~/.dotfiles && stow -v bin
dev_install:
cd ~/.dotfiles && stow -v dev
alacritty_install:
cd ~/.dotfiles && stow -v alacritty
bat_install:
cd ~/.dotfiles && stow -v bat
iterm2_install:
cd ~/.dotfiles && stow -v iterm2
kitty_install:
cd ~/.dotfiles && stow -v kitty
pgcli_install:
cd ~/.dotfiles && stow -v pgcli
vifm_install:
cd ~/.dotfiles && stow -v pgcli
bootstrap:
make brew_install
make git_install
make zsh_install
make tmux_install
make nvim_install
make bin_install
make dev_install
make alacritty_install
make bat_install
make iterm2_install
make kitty_install
make pgcli_install
make vifm_install