diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2018-09-08 17:32:52 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2018-09-08 17:32:52 -0700 |
commit | 9958776e6b67a5de001e0465fba421d2f55d060c (patch) | |
tree | b2da7fb7ec934cd7c17e5a1e054a3a00c605196a /configs/rcs/Makefile | |
parent | [emancs] remove projectile and ivy (diff) | |
download | emacs.d-9958776e6b67a5de001e0465fba421d2f55d060c.tar.gz |
Revert "[vim] Guess what."
This reverts commit 2f8889f15056a3d02012c98c0eb701ee6fb16a57.
Diffstat (limited to 'configs/rcs/Makefile')
-rw-r--r-- | configs/rcs/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/configs/rcs/Makefile b/configs/rcs/Makefile index 2b78a51..e1fe326 100644 --- a/configs/rcs/Makefile +++ b/configs/rcs/Makefile @@ -7,7 +7,9 @@ INSTALL = \ ctags \ emacs.d \ gitconfig \ - gitignore + gitignore \ + vimrc \ + vim INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL)) @@ -23,6 +25,9 @@ $(HOME)/.ssh/authorized_keys: $(HOME)/workspace: @mkdir -p $(HOME)/workspace/ +$(HOME)/.local/share/vim: + @mkdir -p $(HOME)/.local/share/vim + .PHONY: git git: @git config --local user.email "franck.cuny@gmail.com" @@ -37,4 +42,4 @@ clean-dead: @find ~ -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -delete .PHONY: install -install: $(INSTALLED) $(HOME)/workspace $(HOME)/.ssh/authorized_keys +install: $(INSTALLED) $(HOME)/workspace $(HOME)/.ssh/authorized_keys $(HOME)/.local/share/vim |