diff options
author | Cody Hiar <codyfh@gmail.com> | 2016-12-24 03:47:24 +0000 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2016-12-24 03:47:24 +0000 |
commit | 89021e88220a30050e386cec8a238cfdb93357db (patch) | |
tree | e67c87393e00ad23d37c5c3169c9437169ca0c55 | |
parent | a99a7d937e07a6c23d895db3d052291d646f7687 (diff) |
Adding makefile to install symlinks. Removing vdebug, not needed
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | vimrc | 1 |
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 @@ -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' |