-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (24 loc) · 565 Bytes
/
Makefile
File metadata and controls
25 lines (24 loc) · 565 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
NODE_PATH = `which node`
build:
docker build .. -f Dockerfile -t marcpartensky/nvim
build_alpine:
docker build .. -f Dockerfile_alpine -t marcpartensky/nvim:alpine
push:
docker push marcpartensky/nvim
run:
docker run --name nvim -it marcpartensky/nvim
docker rm nvim
setup: node python plugins
python:
python -m ensurepip
python -m pip install neovim
node:
sudo ln -sf ${NODE_PATH} /usr/local/bin/node
plugins:
nvim \
+"source ${HOME}/.config/nvim/vim-plug/plugins.vim" \
+CocInstall \
+PlugUpdate \
+UpdateRemotePlugins \
+qall
.PHONY: plugins