From 827b4c8e21924d35470e6a22f7f48fae83ebcf4e Mon Sep 17 00:00:00 2001 From: Will Date: Tue, 29 Jan 2019 18:09:50 +0000 Subject: [PATCH] Updates to avoid Ctrl-S issue in terminal --- .bashrc | 1 + Dockerfile | 2 ++ run | 1 + 3 files changed, 4 insertions(+) create mode 100644 .bashrc diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..47822a5 --- /dev/null +++ b/.bashrc @@ -0,0 +1 @@ +stty -ixon \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index a9db352..8545229 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,6 +57,8 @@ RUN mkdir -p /ext && echo " " > /ext/.vimrc COPY .vimrc $UHOME/my.vimrc +COPY .bashrc $UHOME/.bashrc + # Vim plugins deps RUN apk --update add \ bash \ diff --git a/run b/run index 6a6754a..35c4286 100644 --- a/run +++ b/run @@ -6,5 +6,6 @@ echo "execute pathogen#infect('/ext/bundle/{}')" >> .vimrc mkdir -p /home/developer/.vim_runtime/temp_dirs cat .vimrc~ >> .vimrc echo "source /ext/.vimrc" >> .vimrc +source /home/developer/.bashrc cd /home/developer/workspace/ vim $@