Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.18 KB | None | 0 0
  1. (require 'package)
  2. (let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
  3.                     (not (gnutls-available-p))))
  4.        (proto (if no-ssl "http" "https")))
  5.   (when no-ssl
  6.     (warn "\
  7. Your version of Emacs does not support SSL connections,
  8. which is unsafe because it allows man-in-the-middle attacks.
  9. There are two things you can do about this warning:
  10. 1. Install an Emacs version that does support SSL and be safe.
  11. 2. Remove this warning from your init file so you won't see it again."))
  12.  (setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
  13.                           ("melpa" . "https://melpa.org/packages/")))
  14.  
  15.  (package-initialize)
  16.  '(package-selected-packages (quote (slime slim-mode))))
  17. (custom-set-faces)
  18.  ;; custom-set-faces was added by Custom.
  19.  ;; If you edit it by hand, you could mess it up, so be careful.
  20.  ;; Your init file should contain only one such instance.
  21.  ;; If there is more than one, they won't work right.
  22.  
  23.  
  24.  
  25. (setq inferior-lisp-program "/usr/local/bin/sbcl")
  26. (add-to-list 'load-path' "/home/mark/.emacs.d/elpa/slime-20190709.1031")
  27. (require ’slime')
  28. (slime-setup)
  29.  
  30.  
  31. (setq slime-contribs '(slime-fancy)) ; almost everything
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement