Skip to content

Instantly share code, notes, and snippets.

@scottstanfield
Created October 4, 2020 05:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottstanfield/143860388c45ed96102f31673b6f0579 to your computer and use it in GitHub Desktop.
Save scottstanfield/143860388c45ed96102f31673b6f0579 to your computer and use it in GitHub Desktop.
FROM alpine
RUN apk update
RUN apk add git openssh zsh nano vim less mandoc man-pages curl wget coreutils binutils findutils grep bash
RUN apk add build-base gcc openssl
RUN git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
WORKDIR /root
#RUN echo "source powerlevel10k/powerlevel10k.zsh-theme" > .zshrc
RUN curl -sfL git.io/antibody | sh -s - -b /usr/local/bin
RUN mkdir .zsh && git clone git://github.com/marlonrichert/zsh-snap .zsh/zsh-snap
RUN echo "source ~/.zsh/zsh-snap/znap.zsh" > .zshrc
COPY plugins.txt /root
## Trying a few ZSH shell plugins
## https://github.com/marlonrichert/zsh-snap
## https://github.com/laggardkernel/zsh-thefuck
## https://jdhao.github.io/2019/10/08/zsh_plugin_managers_compare/
CMD zsh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment