diff options
author | Franck Cuny <fcuny@twitter.com> | 2018-08-27 09:13:49 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2018-08-27 09:13:49 -0700 |
commit | 2461ff3c8539e31c4ffb0a53960a4451a4ce1f17 (patch) | |
tree | 0b5e6838ec079a6e34ab0c5659b5e578c2b6c1c1 /configs/rcs/Makefile | |
parent | [emacs] merge configurations (diff) | |
download | emacs.d-2461ff3c8539e31c4ffb0a53960a4451a4ce1f17.tar.gz |
[vim] Add vim again. Will give it another try for a week.
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 |