From e6200f0ce5e55b84cee9c780d2962c1cc3edb3b2 Mon Sep 17 00:00:00 2001 From: Davlet Panech Date: Wed, 20 Apr 2022 14:45:59 -0400 Subject: [PATCH] debian: sane vimrc Add a default vimrc to all stx docker containers. The default vimrc that comes with Debian is inconvenient, set the following options: * Disable tabs * Set indent to 4 * Disable TTY mouse events. This allows us to copy & paste between vim and the terminal's window manager * Restore text cursor position after loading a file to where it was when we last closed it * Enable syntax and search highlight TESTS =================== - Rebuild all containers - Start up vim and make sure the new options are in effect NOTE: the lat container doesn't install vim by default Story: 2008846 Task: 45123 Signed-off-by: Davlet Panech Change-Id: I0b144b131c2eccbaf97d2dc435475b169a0678e3 --- stx/dockerfiles/stx-aptly.Dockerfile | 5 +++++ stx/dockerfiles/stx-builder.Dockerfile | 5 +++++ stx/dockerfiles/stx-lat-tool.Dockerfile | 5 +++++ stx/dockerfiles/stx-pkgbuilder.Dockerfile | 5 +++++ stx/toCOPY/common/vimrc.local | 16 ++++++++++++++++ 5 files changed, 36 insertions(+) create mode 100644 stx/toCOPY/common/vimrc.local diff --git a/stx/dockerfiles/stx-aptly.Dockerfile b/stx/dockerfiles/stx-aptly.Dockerfile index 15ca739b9..a6ff0e40e 100644 --- a/stx/dockerfiles/stx-aptly.Dockerfile +++ b/stx/dockerfiles/stx-aptly.Dockerfile @@ -70,6 +70,11 @@ COPY stx/toCOPY/aptly/privkey.rsa /root RUN gpg --import --pinentry-mode loopback --batch --passphrase starlingx /root/privkey.rsa && \ rm -f /root/privkey.rsa +# Add vimrc +RUN mkdir -p /etc/vim +COPY stx/toCOPY/common/vimrc.local /etc/vim/vimrc.local +RUN chmod 0644 /etc/vim/vimrc.local + # Configure startup COPY stx/toCOPY/aptly/entrypoint.sh /bin/entrypoint.sh ENTRYPOINT [ "/bin/entrypoint.sh" ] diff --git a/stx/dockerfiles/stx-builder.Dockerfile b/stx/dockerfiles/stx-builder.Dockerfile index ef2d0eea7..435782add 100644 --- a/stx/dockerfiles/stx-builder.Dockerfile +++ b/stx/dockerfiles/stx-builder.Dockerfile @@ -82,3 +82,8 @@ COPY stx/toCOPY/builder/buildrc /root/ COPY stx/toCOPY/builder/pubkey.rsa /root RUN apt-key add /root/pubkey.rsa && rm -f /root/pubkey.rsa + +# Add vimrc +RUN mkdir -p /etc/vim +COPY stx/toCOPY/common/vimrc.local /etc/vim/vimrc.local +RUN chmod 0644 /etc/vim/vimrc.local diff --git a/stx/dockerfiles/stx-lat-tool.Dockerfile b/stx/dockerfiles/stx-lat-tool.Dockerfile index 69750da56..232ef6f83 100644 --- a/stx/dockerfiles/stx-lat-tool.Dockerfile +++ b/stx/dockerfiles/stx-lat-tool.Dockerfile @@ -51,5 +51,10 @@ RUN sed -i 's/linux-image-amd64/linux-image-5.10.0-6-amd64-unsigned/g' /opt/LAT/ RUN sed -i 's/Wind River Linux Graphics development .* ostree/StarlingX ostree/g' /opt/LAT/SDK/sysroots/corei7-64-wrs-linux/boot/efi/EFI/BOOT/grub.cfg +# Add vimrc +RUN mkdir /etc/vim +COPY stx/toCOPY/common/vimrc.local /etc/vim/vimrc.local +RUN chmod 0644 /etc/vim/vimrc.local + ENTRYPOINT ["/usr/bin/tini", "--"] CMD ["/opt/LAT/lat/latd"] diff --git a/stx/dockerfiles/stx-pkgbuilder.Dockerfile b/stx/dockerfiles/stx-pkgbuilder.Dockerfile index 19e3dd262..96eaa5f9d 100644 --- a/stx/dockerfiles/stx-pkgbuilder.Dockerfile +++ b/stx/dockerfiles/stx-pkgbuilder.Dockerfile @@ -59,6 +59,11 @@ COPY stx/toCOPY/pkgbuilder/debbuilder.conf /etc/sbuild/sbuild.conf COPY stx/toCOPY/pkgbuilder/pubkey.rsa /root RUN apt-key add /root/pubkey.rsa && rm -f /root/pubkey.rsa +# Add vimrc +RUN mkdir -p /etc/vim +COPY stx/toCOPY/common/vimrc.local /etc/vim/vimrc.local +RUN chmod 0644 /etc/vim/vimrc.local + ENTRYPOINT ["/usr/bin/tini", "--"] WORKDIR /opt CMD ["python3", "app.py"] diff --git a/stx/toCOPY/common/vimrc.local b/stx/toCOPY/common/vimrc.local new file mode 100644 index 000000000..df135c641 --- /dev/null +++ b/stx/toCOPY/common/vimrc.local @@ -0,0 +1,16 @@ +" Indent + disable tabs +set tabstop=4 +set softtabstop=4 +set shiftwidth=4 +set expandtab + +" Ignore TTY mouse events +set ttymouse= + +" Enable search & syntax highlight +set hlsearch +syntax on + +" Restore cursor position +au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g`\"" | endif +