From 10a8bc2438750eb6601dc576c2506910d8719b6e Mon Sep 17 00:00:00 2001 From: Pavel Chernykh Date: Thu, 9 Jul 2015 12:56:25 +0300 Subject: [PATCH] Add groovy module --- modules/README.md | 5 +++++ modules/groovy/README.md | 15 +++++++++++++++ modules/groovy/init.zsh | 13 +++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 modules/groovy/README.md create mode 100644 modules/groovy/init.zsh diff --git a/modules/README.md b/modules/README.md index 2a49804c..a2f0baea 100644 --- a/modules/README.md +++ b/modules/README.md @@ -72,6 +72,11 @@ GPG Provides for an easier use of GPG by setting up gpg-agent. +Groovy +------ + +Loads the Groovy enVironment Manager + Haskell ------- diff --git a/modules/groovy/README.md b/modules/groovy/README.md new file mode 100644 index 00000000..d9c4c330 --- /dev/null +++ b/modules/groovy/README.md @@ -0,0 +1,15 @@ +[Groovy][1] +=========== + +Loads the [Groovy enVironment Manager][2] + +Authors +------- + +*The authors of this module should be contacted via the [issue tracker][3].* + + - [Pavel Chernykh](https://github.com/pavel-v-chernykh) + +[1]: http://groovy-lang.org +[2]: http://gvmtool.net/ +[3]: https://github.com/sorin-ionescu/prezto/issues diff --git a/modules/groovy/init.zsh b/modules/groovy/init.zsh new file mode 100644 index 00000000..99d2d57b --- /dev/null +++ b/modules/groovy/init.zsh @@ -0,0 +1,13 @@ +# +# Loads the Groovy enVironment Manager +# +# Authors: +# Pavel Chernykh +# + +# +# Load manually installed the Groovy enVironment Manager +# +if [[ -s "$HOME/.gvm/bin/gvm-init.sh" ]]; then + source "$HOME/.gvm/bin/gvm-init.sh" +fi