aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@localhost.localdomain>2023-06-30 07:56:12 -0700
committercolin <colin@localhost.localdomain>2023-06-30 07:56:12 -0700
commitb74e9e3733b85084de224ba24c69bb6a0c390ff8 (patch)
tree95dc4a41c76c46b0c7b1281bf3801b7f338e9155
parent44d9bfcfe30a536d88f7561d46e1dc2e2cd5c4c5 (diff)
Updating sbcl command
-rw-r--r--init-el.org3
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"))
))