-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
33 lines (28 loc) · 1011 Bytes
/
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
DOTFILES=$(shell pwd)
LN=ln -snf
.PHONY: all zsh tmux git nvim
all: zsh tmux git nvim
zsh:
$(LN) $(DOTFILES)/zshenv $(HOME)/.zshenv
$(LN) $(DOTFILES)/zprofile $(HOME)/.zprofile
$(LN) $(DOTFILES)/zprezto $(HOME)/.zprezto
$(LN) $(DOTFILES)/zpreztorc $(HOME)/.zpreztorc
$(LN) $(DOTFILES)/zshrc $(HOME)/.zshrc
$(LN) $(DOTFILES)/aliasrc $(HOME)/.aliasrc
$(LN) $(DOTFILES)/zlogin $(HOME)/.zlogin
$(LN) $(DOTFILES)/zlogout $(HOME)/.zlogout
$(LN) $(DOTFILES)/sandboxd/sandboxd $(HOME)/.sandboxd
$(LN) $(DOTFILES)/sandboxrc $(HOME)/.sandboxrc
$(LN) $(DOTFILES)/gemrc $(HOME)/.gemrc
$(LN) $(DOTFILES)/rvmrc $(HOME)/.rvmrc
$(LN) $(DOTFILES)/ripgreprc $(HOME)/.ripgreprc
$(LN) $(DOTFILES)/rgignore $(HOME)/.rgignore
tmux:
$(LN) $(DOTFILES)/tmux.conf $(HOME)/.tmux.conf
git:
$(LN) $(DOTFILES)/gitconfig $(HOME)/.gitconfig
$(LN) $(DOTFILES)/gitignore $(HOME)/.gitignore
$(LN) $(DOTFILES)/git-templates $(HOME)/.git-templates
nvim:
mkdir -p $(HOME)/.config
$(LN) $(DOTFILES)/nvim $(HOME)/.config/nvim