aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-16 12:46:44 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-16 12:46:44 +1300
commitc8d8ae55b98503bc0c95d5ad1809a93ab92494e9 (patch)
treec7b22bd7b376d4f78284f8127635bf81a60c2474 /Makefile
parentAdd missing left angle bracket to filetype undo (diff)
downloaddotfiles-c8d8ae55b98503bc0c95d5ad1809a93ab92494e9.tar.gz
dotfiles-c8d8ae55b98503bc0c95d5ad1809a93ab92494e9.zip
Add Bash settings to Vim readline highlighting
This includes the creation of a hitherto-unneeded Makefile target install-vim-syntax.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 833f4ac9..0731df0b 100644
--- a/Makefile
+++ b/Makefile
@@ -53,6 +53,7 @@
install-vim-gui-config \
install-vim-indent \
install-vim-plugin \
+ install-vim-syntax \
install-vint \
install-wget \
install-x \
@@ -506,7 +507,8 @@ install-vim: install-vim-after \
install-vim-ftdetect \
install-vim-ftplugin \
install-vim-indent \
- install-vim-plugin
+ install-vim-plugin \
+ install-vim-syntax
install-neovim:
make install-vim \
@@ -591,6 +593,10 @@ install-vim-plugin:
mkdir -p -- $(VIMDIR)/plugin
cp -p -- vim/plugin/*.vim $(VIMDIR)/plugin
+install-vim-syntax:
+ mkdir -p -- $(VIMDIR)/syntax
+ cp -p -- vim/syntax/*.vim $(VIMDIR)/syntax
+
install-vint:
cp -p -- vint/vintrc.yaml $(HOME)/.vintrc.yaml