Great. Thanks for your replies...I am slowly working through this setup stuff.
I had slime working until I tried the 'slime-fancy addition. My .emacs:
- Code: Select all
(setq inferior-lisp-program "sbcl")
(require 'cl)
(push "/usr/loca/bin" exec-path)
(push "/usr/texbin" exec-path)
(push "/usr/local/share/emacs/site-lisp" load-path)
(autoload 'imaxima "imaxima" "Maxima frontend" t)
(autoload 'imath "imath" "Interactive Math mode" t)
(add-hook 'c-mode-hook 'turn-on-font-lock)
(show-paren-mode)
(setq make-backup-files nil) ;; do not make backup files
;;keyboard navigation
(define-key global-map (kbd "RET") 'newline-and-indent)
(global-set-key "\C-n"(lambda () (interactive) (next-line 5)))
(global-set-key "\C-p" (lambda () (interactive) (next-line -5)))
(global-set-key "\C-u" (lambda () (interactive) (next-line -1)))
(global-set-key "\C-o" (lambda () (interactive) (next-line 1)))
(setq inferior-lisp-program "/opt/local/bin/sbcl") ; your Lisp system
(add-to-list 'load-path "~/.emacs.d/slime") ; your SLIME directory
(require 'slime)
(slime-setup 'slime-fancy)
error caused from 'slime-fancy addition:
- Code: Select all
Warning (initialization): An error occurred while loading `/Users/joshreese/.em\
acs':
Wrong type argument: listp, slime-fancy
Seems to work find without the 'slime-fancy