diff --git a/Makefile b/Makefile deleted file mode 100644 index 470bfac..0000000 --- a/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -.PHONY: help update backup - -PLUGINS := $(wildcard bundle/*) -LIST := download-plugins.sh - -## Some local functions -upd = $(shell git -C $1 pull) -bak = $(shell echo "git clone $$(git -C $1 remote get-url origin) $1" >> $2) - -help: ## Display this message - @echo "Usage:" - @sed -nE "s|^(.+?)\\s*:\\s*##\\s*(.+)$$|\\tmake \\1\\t- \\2|p" \ - $(lastword $(MAKEFILE_LIST)) - -update: ## Update all bundled plugins - @echo $(foreach dir,$(PLUGINS),$(call upd,$(dir))) > /dev/null - -backup: ## Create backup list of bundled plugins - @echo $(foreach dir,$(PLUGINS),$(call bak,$(dir),$(LIST))) - @cat $(LIST) diff --git a/download-plugins.sh b/download-plugins.sh deleted file mode 100644 index 885f6e5..0000000 --- a/download-plugins.sh +++ /dev/null @@ -1,9 +0,0 @@ -git clone git@github.com:zah/nim.vim.git bundle/nim -git clone git@github.com:Xuyuanp/nerdtree-git-plugin.git bundle/nerdtree-git -git clone git@github.com:ziglang/zig.vim.git bundle/zig -git clone git@github.com:ekalinin/Dockerfile.vim.git bundle/dockerfile -git clone git@github.com:altercation/vim-colors-solarized.git bundle/solarized -git clone git@github.com:preservim/nerdtree.git bundle/nerdtree -git clone git@github.com:tpope/vim-fugitive.git bundle/fugitive -git clone git@github.com:vim-syntastic/syntastic.git bundle/syntastic -git clone git@github.com:hashivim/vim-terraform.git bundle/terraform