Docker: do not enable visual mode on right click in vim

This commit is contained in:
Christian Poessinger 2020-02-02 15:34:16 +01:00
parent cabc4f253d
commit 47647d4016

View File

@ -378,5 +378,9 @@ RUN echo "$(opam env --root=/opt/opam --set-root)" >> /etc/skel/.bashrc
# Cleanup
RUN rm -rf /tmp/*
# Do not enable visual mode on right click in vim
# https://github.com/vim/vim/issues/1326
RUN echo "set mouse-=a" >> /etc/vim/vimrc
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]