Swapped setup script for Makefile

This commit is contained in:
Chuck Hawley
2017-10-23 14:57:31 -04:00
parent ea5ddbc053
commit ed4f245358
3 changed files with 25 additions and 93 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
all: softlinks
@echo "-----------------------------------------------------------"
@echo "Vim and environment"
@echo "-----------------------------------------------------------"
@echo "Open vim and type :PlugInstall to install extension manager"
softlinks: dependencies
@test -L ${HOME}/.vim || ln -s ${PWD}/.vim ${HOME}/.vim
@test -L ${HOME}/.vimrc || ln -s ${PWD}/.vimrc ${HOME}/.vimrc
dependencies:
@sudo apt install vim