Advertisement
Guest User

Untitled

a guest
Jan 12th, 2013
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.39 KB | None | 0 0
  1. (custom-set-variables
  2.  '(ansi-color-names-vector ["#2d3743" "#ff4242" "#74af68" "#dbdb95" "#34cae2" "#008b8b" "#00ede1" "#e1e1e0"])
  3.  '(cua-mode t nil (cua-base))
  4.  '(custom-safe-themes (quote ("71efabb175ea1cf5c9768f10dad62bb2606f41d110152f4ace675325d28df8bd" "76579ac5c4a8b4f3c7ea2458d10812c81be221a0d48612af7195ad53706783ba" "301f218fa2357b2aa2a433e049f87e059c5ba2ad8b161634d758fbf007bf1d0a" default)))
  5.  '(custom-theme-load-path (quote (custom-theme-directory t "/home/user/.emacs.d/monokai/")))
  6.  '(inhibit-startup-screen t)
  7.  '(initial-buffer-choice t)
  8.  '(initial-scratch-message ";; This buffer is for notes you don't want to save, and for Lisp evaluation.
  9. ;; If you want to create a file, visit that file with C-x C-f,
  10. ;; then enter the text in that file's own buffer.
  11.  
  12. ")
  13.  '(show-paren-mode t))
  14. (custom-set-faces
  15.  '(default ((t (:family "Consolas" :foundry "unknown" :slant normal
  16. :weight normal :height 128 :width normal)))))
  17.  
  18. (load-theme 'misterioso t)
  19.  
  20. (add-to-list 'load-path "~/Downloads/autopair")
  21. (require 'autopair)
  22. (autopair-global-mode)
  23.  
  24. (add-to-list 'load-path "~/Downloads/slime/")
  25. (setq inferior-lisp-program "/usr/bin/sbcl"
  26.     lisp-indent-function 'common-lisp-indent-function
  27.     slime-complete-symbol-function 'slime-fuzzy-complete-symbol
  28.     common-lisp-hyperspec-root "/home/user/Downloads/HyperSpec/")
  29. (require 'slime-autoloads)
  30. (slime-setup '(slime-fancy))
  31. (require 'w3m-load)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement