diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Makefile b/Makefile index 4e0e867..2b78a51 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,7 @@ INSTALL = \ ctags \ emacs.d \ gitconfig \ - gitignore \ - tmux.conf \ - vim \ - vimrc + gitignore INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL)) @@ -26,9 +23,6 @@ $(HOME)/.ssh/authorized_keys: $(HOME)/workspace: @mkdir -p $(HOME)/workspace/ -$(PWD)/vim/autoload/plug.vim: - @curl -fLo $(PWD)/vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim - .PHONY: git git: @git config --local user.email "franck.cuny@gmail.com" @@ -43,4 +37,4 @@ clean-dead: @find ~ -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -delete .PHONY: install -install: $(INSTALLED) $(HOME)/workspace $(HOME)/.ssh/authorized_keys $(PWD)/vim/autoload/plug.vim +install: $(INSTALLED) $(HOME)/workspace $(HOME)/.ssh/authorized_keys |