diff options
-rw-r--r-- | init-el.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init-el.org b/init-el.org index 920e02f..1adb04a 100644 --- a/init-el.org +++ b/init-el.org @@ -1334,7 +1334,7 @@ association one shell with each [[*Perspectives Leader Key Menu][perspective aka #+begin_src elisp :results none (defvar my-current-slime-name "sbcl") -(setq sbcl-command "sbcl --dynamic-space-size 4096") +(setq sbcl-command "/home/colin/bin/sbcl --dynamic-space-size 4096") (setq inferior-lisp-program sbcl-command) (defmacro start-slime-with (str name) @@ -1360,6 +1360,7 @@ association one shell with each [[*Perspectives Leader Key Menu][perspective aka `((?' "['] repl" my-switch-to-slime) (?s "[s]bcl" ,(start-slime-with sbcl-command "sbcl")) (?e "[e]cl" ,(start-slime-with "ecl" "ecl")) + (?a "[a]bcl" ,(start-slime-with "abcl" "abcl")) ;(?c "[c]cl" ,(start-slime-with "~/lisp/ccl/lx86cl64" "ccl")) )) |