Use the same version as the current macvim

This commit is contained in:
Ben Jackson 2019-06-01 15:04:53 +01:00
commit d458d06bc5
12 changed files with 733 additions and 4 deletions

View file

@ -16,15 +16,17 @@ RUN apt-get update && \
RUN ln -fs /usr/share/zoneinfo/Europe/London /etc/localtime && \
dpkg-reconfigure --frontend noninteractive tzdata
ARG VIM_VERSION=v8.1.1270
RUN mkdir -p $HOME/vim && \
cd $HOME/vim && \
git clone https://github.com/vim/vim && \
cd vim && \
git checkout v8.1.1302 && \
git checkout ${VIM_VERSION} && \
./configure --with-features=huge \
--enable-python3interp \
--enable-terminal \
--enable-multibyte \
--enable-fail-if-missing && \
make -j 8 install
make -j 4 install