15 lines
438 B
Makefile
15 lines
438 B
Makefile
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
|
|
|
|
|