From 89021e88220a30050e386cec8a238cfdb93357db Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Sat, 24 Dec 2016 03:47:24 +0000 Subject: Adding makefile to install symlinks. Removing vdebug, not needed --- Makefile | 8 ++++++++ vimrc | 1 - 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f0fba53 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +help: + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' + +install: ## Install the symlink + ln -s $(CURDIR)/vimrc ~/.vimrc + +uninstall: ## Remove the sumlink + [[ -L ~/.muttrc ]] && rm ~/.vimrc diff --git a/vimrc b/vimrc index 665b7a9..bd07f8e 100644 --- a/vimrc +++ b/vimrc @@ -12,7 +12,6 @@ Plug 'jistr/vim-nerdtree-tabs' Plug 'tpope/vim-fugitive' Plug 'terryma/vim-multiple-cursors' Plug 'scrooloose/syntastic' -Plug 'thornycrackers/vdebug' Plug 'ctrlpvim/ctrlp.vim' Plug 'tpope/vim-surround' Plug 'tmhedberg/matchit' -- cgit v1.2.3