aboutsummaryrefslogtreecommitdiff
path: root/shoshimacs.org
diff options
context:
space:
mode:
Diffstat (limited to 'shoshimacs.org')
-rw-r--r--shoshimacs.org17
1 files changed, 16 insertions, 1 deletions
diff --git a/shoshimacs.org b/shoshimacs.org
index 52b1fbc..554cc3d 100644
--- a/shoshimacs.org
+++ b/shoshimacs.org
@@ -676,8 +676,23 @@ from them in various Emacs menus. [[*\[\[info:consult#Top\]\[consult\]\] - Consu
:END:
** Languages
*** Common Lisp
+
+The ~slime~ package v2.26.1 in the nongnu repo seems to have an issue with
+emacs 28.1 (?) so I'm installing it from source.
+
#+begin_src emacs-lisp
- (package-install 'sly)
+ (defvar slime-repo "https://github.com/slime/slime")
+ (defvar slime-src-dir "~/src/slime")
+
+ (unless (file-directory-p slime-src-dir)
+ (shell-command
+ (format "git clone %s %s" slime-repo slime-src-dir)))
+
+ (add-to-list 'load-path slime-src-dir)
+
+ (require 'slime)
+
+ (setq inferior-lisp-program "sbcl")
#+end_src
*** Javascript