diff options
author | Rory Bradford <roryrjb@gmail.com> | 2020-08-08 14:53:44 +0100 |
---|---|---|
committer | Rory Bradford <roryrjb@gmail.com> | 2020-08-08 14:53:44 +0100 |
commit | b2f8846c34af5271941d7bddd65fd45fcba6b5a9 (patch) | |
tree | c0c3d2897c16c2747949198928d898d8c5f63a58 /contrib/vim/Makefile | |
parent | 2ffea3b5158349e05fde36eef67179fa8da29808 (diff) | |
download | rf-b2f8846c34af5271941d7bddd65fd45fcba6b5a9.tar.gz |
Add contrib/ with Vim integration example
Signed-off-by: Rory Bradford <roryrjb@gmail.com>
Diffstat (limited to 'contrib/vim/Makefile')
-rw-r--r-- | contrib/vim/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/vim/Makefile b/contrib/vim/Makefile new file mode 100644 index 0000000..84493bc --- /dev/null +++ b/contrib/vim/Makefile @@ -0,0 +1,5 @@ +DEST = ~/.vim/after/plugin + +install: + mkdir -p $(DEST) + install -m644 ./plugin/rf.vim $(DEST) |