diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2017-07-12 17:27:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-12 17:27:45 +0300 |
commit | 40a12d388fa7fbb73e912cedc0a6c272ede64860 (patch) | |
tree | 26c80d671d557ec7c19fb61eeea44c98d5cc1d7d /docker/zplugin | |
parent | c88cea7f3f9983a25616317ad475759fa99ee8a1 (diff) | |
parent | 2f808f8a4e6224478e1c9efb85c1a4b3f24df087 (diff) |
Merge pull request #567 from docwhat/pr/docker
test-in-docker: quickly test frameworks in docker
Diffstat (limited to 'docker/zplugin')
-rw-r--r-- | docker/zplugin/Dockerfile | 8 | ||||
-rw-r--r-- | docker/zplugin/install.zsh | 12 | ||||
-rw-r--r-- | docker/zplugin/zshrc.plugins | 5 |
3 files changed, 25 insertions, 0 deletions
diff --git a/docker/zplugin/Dockerfile b/docker/zplugin/Dockerfile new file mode 100644 index 00000000..90c35c0e --- /dev/null +++ b/docker/zplugin/Dockerfile @@ -0,0 +1,8 @@ +ARG base +FROM p9k:${base} + +COPY docker/zplugin/install.zsh /tmp/ +RUN zsh /tmp/install.zsh + +COPY ./ p9k/ +COPY docker/zplugin/zshrc.plugins .zshrc.plugins diff --git a/docker/zplugin/install.zsh b/docker/zplugin/install.zsh new file mode 100644 index 00000000..fec4249d --- /dev/null +++ b/docker/zplugin/install.zsh @@ -0,0 +1,12 @@ +sh -c "$(curl -fsSL https://raw.githubusercontent.com/psprint/zplugin/master/doc/install.sh)" + +# The 'zplugin snippet' only copies the .zsh-theme file, not everything else. +mkdir -p ~/.zplugin/snippets +ln -nsf \ + ~/p9k/ \ +~/.zplugin/snippets/--SLASH--home--SLASH--fred--SLASH--p9k--SLASH--powerlevel9k--DOT--zsh-theme + +{ + echo + echo "source ~/.zshrc.plugins" +} >> ~/.zshrc diff --git a/docker/zplugin/zshrc.plugins b/docker/zplugin/zshrc.plugins new file mode 100644 index 00000000..2e9ba7a3 --- /dev/null +++ b/docker/zplugin/zshrc.plugins @@ -0,0 +1,5 @@ +#!zsh + +zplugin load psprint zsh-navigation-tools +zplugin load psprint---zprompts +zplugin snippet ~/p9k/powerlevel9k.zsh-theme |