diff options
-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' |