feat: configure .vimrc, configure direnv in .bashrc
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Pim van den Berg 2024-01-26 10:58:29 +01:00
parent 5ff94a411c
commit e63eca9978
1 changed files with 3 additions and 1 deletions

View File

@ -34,7 +34,9 @@ RUN set -eux && \
rm -rf /var/lib/apt/lists/* && \
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && \
/usr/sbin/locale-gen && \
/usr/sbin/update-locale 'LANG=en_US.UTF-8'
/usr/sbin/update-locale 'LANG=en_US.UTF-8' && \
echo "set mouse=\"\"" > /root/.vimrc && \
echo "eval \"\$(direnv hook bash)\"" >> /root/.bashrc
ADD start.sh /
WORKDIR /root