├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md └── copy-pasta.plugin.zsh /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 2 | 3 | Initial Release 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | 3 | COPY ./copy-pasta.plugin.zsh /src/ 4 | 5 | WORKDIR src 6 | ENTRYPOINT bash 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/copy-pasta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/copy-pasta/HEAD/README.md -------------------------------------------------------------------------------- /copy-pasta.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/copy-pasta/HEAD/copy-pasta.plugin.zsh --------------------------------------------------------------------------------