We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fec4bfb commit 20b14c0Copy full SHA for 20b14c0
.devcontainer/GHC.Dockerfile
@@ -40,6 +40,8 @@ RUN sysArch="$(uname -m)" \
40
&& apk add --no-cache yamllint \
41
## Install pip
42
&& apk add --no-cache py3-pip \
43
+ ## Install terminal multiplexers
44
+ && apk add --no-cache screen tmux \
45
## Install hadolint
46
&& case "$sysArch" in \
47
x86_64) tarArch="x86_64" ;; \
.devcontainer/scripts/usr/local/bin/onCreateCommand.sh
@@ -38,7 +38,7 @@ if ! grep -q "cabal's bin" "$HOME/.zshrc"; then
38
fi
39
# Enable Oh My Zsh plugins
-sed -i "s/plugins=(git)/plugins=(cabal git pip stack)/g" "$HOME/.zshrc"
+sed -i "s/plugins=(git)/plugins=(cabal git pip stack screen tmux vscode)/g" "$HOME/.zshrc"
# Remove old .zcompdump files
rm -f "$HOME"/.zcompdump*
0 commit comments