From 4f071786a0a941b6607721af50a452f1afa1a4c5 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 30 Jun 2012 23:00:22 +0100 Subject: [PATCH] Add shell setup for SBCL --- shell/_main.sh | 1 + shell/sbcl.sh | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 shell/sbcl.sh diff --git a/shell/_main.sh b/shell/_main.sh index e8c4105..afac193 100644 --- a/shell/_main.sh +++ b/shell/_main.sh @@ -30,6 +30,7 @@ source "$DOTSHELL/tmux.sh" source "$DOTSHELL/nodejs.sh" source "$DOTSHELL/python.sh" source "$DOTSHELL/ruby.sh" +source "$DOTSHELL/sbcl.sh" # Services source "$DOTSHELL/services.sh" diff --git a/shell/sbcl.sh b/shell/sbcl.sh new file mode 100644 index 0000000..5455fb8 --- /dev/null +++ b/shell/sbcl.sh @@ -0,0 +1,4 @@ +if [ -d "/opt/sbcl/" ]; then + path_append "/opt/sbcl/bin" + export SBCL_HOME="/opt/sbcl/lib/sbcl" +fi