aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2016-12-24 03:47:24 +0000
committerCody Hiar <codyfh@gmail.com>2016-12-24 03:47:24 +0000
commit89021e88220a30050e386cec8a238cfdb93357db (patch)
treee67c87393e00ad23d37c5c3169c9437169ca0c55
parenta99a7d937e07a6c23d895db3d052291d646f7687 (diff)
Adding makefile to install symlinks. Removing vdebug, not needed
-rw-r--r--Makefile8
-rw-r--r--vimrc1
2 files changed, 8 insertions, 1 deletions
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'