aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-04-25 19:34:14 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-04-25 19:34:14 +1200
commit0d1a44c4b4a8a3a8d25a6d3a433dfcd4f408e9f3 (patch)
tree5ab01f553a43bfe353d491614650a0b6d9682c1a /Makefile
parentMerge branch 'release/v8.19.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-0d1a44c4b4a8a3a8d25a6d3a433dfcd4f408e9f3.tar.gz
dotfiles-0d1a44c4b4a8a3a8d25a6d3a433dfcd4f408e9f3.zip
Merge branch 'release/v8.20.0'v8.20.0
* release/v8.20.0: Revert "Remove Vim :helptags generation" Remove Vim :helptags generation Include XDG_{CONFIG,DATA}_DIRS handling in Vim Roll out the beginnings of XDG support for Vim Remove thesaurus install target Correct built paths for Vim cache dirs Use explicitly nullglob Zsh patterns
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 1 insertions, 15 deletions
diff --git a/Makefile b/Makefile
index 4e435b69..8e537c84 100644
--- a/Makefile
+++ b/Makefile
@@ -58,7 +58,6 @@
install-vim-indent \
install-vim-plugin \
install-vim-syntax \
- install-vim-thesaurus \
install-vint \
install-wget \
install-x \
@@ -589,19 +588,11 @@ install-vim-bundle: install-vim-config
'cp -p -- "$$1" $(VIMDIR)/"$${1#*/}"' _ {} \;
$(VIM) -e -u NONE -c 'helptags $(VIMDIR)/doc' -c quit
-install-vim-cache:
- mkdir -p -- \
- $(VIMDIR)/cache \
- $(VIMDIR)/cache/backup \
- $(VIMDIR)/cache/swap \
- $(VIMDIR)/cache/undo \
- $(VIMDIR)/cache/view
-
install-vim-compiler:
mkdir -p -- $(VIMDIR)/compiler
cp -p -- vim/compiler/*.vim $(VIMDIR)/compiler
-install-vim-config: install-vim-autoload install-vim-cache
+install-vim-config: install-vim-autoload
cp -p -- vim/vimrc.stub $(HOME)/.vimrc
cp -p -- vim/vimrc $(VIMRC)
@@ -632,11 +623,6 @@ install-vim-syntax:
mkdir -p -- $(VIMDIR)/syntax
cp -p -- vim/syntax/*.vim $(VIMDIR)/syntax
-install-vim-thesaurus:
- mkdir -p -- $(VIMDIR)/ref
- curl 'https://sanctum.geek.nz/ref/thesaurus.txt' \
- > $(VIMDIR)/ref/thesaurus.txt
-
install-vint:
cp -p -- vint/vintrc.yaml $(HOME)/.vintrc.yaml