Added support for lein

This commit is contained in:
Tony Grosinger 2014-04-06 15:36:31 -07:00
parent 718b3363a4
commit 2aaf470960
2 changed files with 12 additions and 5 deletions

View File

@ -18,6 +18,7 @@
# ---------- -------------- ----------------------------------------------
# 2014-01-13 agrosinger Added support for using the ZIP instead of git
# 2014-01-04 agrosinger Updated to two mode operation
# 2013-04-06 agrosinger Adding Clojure profiles.clj
################################################################################
DOTFILES_DIR="${HOME}/.dotfiles"
@ -81,6 +82,10 @@ function performSetup() {
echo "Linking inputrc..."
linkFile ".inputrc"
echo "Linking lein..."
createDirectory ".lein"
linkFile "profiles.clj"
popd > /dev/null
}

2
profiles.clj Normal file
View File

@ -0,0 +1,2 @@
{:user {:dependencies [[slamhound "RELEASE"]]
:aliases {"slamhound" ["run" "-m" "slam.hound"]}}}