Update config

This commit is contained in:
2018-04-19 12:44:49 +03:00
parent e5588b6141
commit e3a94bfcc6
4 changed files with 306 additions and 16 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM erroneousboat/neovim
WORKDIR /root
ENTRYPOINT []
RUN apt-get update && apt-get install -y tmux curl git
COPY nvim.vim /root/.config/nvim/init.vim
RUN curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
RUN nvim +PlugInstall +q > /dev/null