Skip to content

Instantly share code, notes, and snippets.

@gabriel-laddel
Created November 6, 2014 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabriel-laddel/7ef54037940c9f3f5f56 to your computer and use it in GitHub Desktop.
Save gabriel-laddel/7ef54037940c9f3f5f56 to your computer and use it in GitHub Desktop.
Modified init.el
diff --git a/init.el b/init.el
index ee76573..ac5f03f 100755
--- a/init.el
+++ b/init.el
@@ -146,7 +146,7 @@
slime-protocol-version 'ignore
;; TODO 2014-10-22T20:21:26-07:00 Gabriel Laddel
;; specific to nixos
- inferior-lisp-program (car (split-string (subseq (shell-command-to-string "whereis sbcl") 5) " " t nil))
+ inferior-lisp-program (split-string (subseq (shell-command-to-string "whereis sbcl") 5) " " t)
;; TODO 2014-10-26T00:40:32-07:00 Gabriel Laddel
;; configure
inferior-lisp-buffer "*slime-repl sbcl*"
@@ -562,7 +562,7 @@
;;; jump start user's customizations etc.
-(unless (slime-connected-p) (slime-connect "127.0.0.1" 4005))
+(unless (slime-connected-p) (slime-connect "127.0.0.1" 40147))
(enable-masamune-keybindings)
(init-gstate!)
(when (file-exists-p "~/quicklisp/local-projects/masamune-os/emacs-customizations.el")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment