Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2012
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.73 KB | None | 0 0
  1. (add-to-list 'load-path "~/.emacs.d/")
  2. (add-to-list 'load-path "/home/cdshines/.emacs.d/color-theme-solarized/")
  3. (require 'quack)
  4. (require 'color-theme)
  5. (require 'color-theme-solarized)
  6. (set-default-font "Terminus-11")
  7. (color-theme-initialize)
  8. (setq color-theme-is-global t)
  9. (eval-after-load "color-theme" '(color-theme-solarized-dark))
  10. ;;;;(require 'auto-complete-config)
  11. ;;;;for scheme autocomplete
  12. (autoload 'scheme-smart-complete "scheme-complete" nil t)
  13. (eval-after-load 'scheme
  14.   '(define-key scheme-mode-map "\t" 'scheme-complete-or-indent))
  15. (autoload 'scheme-get-current-symbol-info "scheme-complete" nil t)
  16. (add-hook 'scheme-mode-hook
  17.   (lambda ()
  18.     (make-local-variable 'eldoc-documentation-function)
  19.     (setq eldoc-documentation-function 'scheme-get-current-symbol-info)
  20.     (eldoc-mode)))
  21. (setq lisp-indent-function 'scheme-smart-indent-function)
  22. ;;;;(add-to-list 'ac-dictionary-directories "~/.emacs.d/ac-dict")
  23. ;;;; Also highlight parens
  24. (setq show-paren-delay 0
  25.       show-paren-style 'parenthesis)
  26. (show-paren-mode 1)
  27. (custom-set-variables
  28.   ;; custom-set-variables was added by Custom.
  29.   ;; If you edit it by hand, you could mess it up, so be careful.
  30.   ;; Your init file should contain only one such instance.
  31.   ;; If there is more than one, they won't work right.
  32.  '(quack-default-program "mit-scheme")
  33.  '(quack-pretty-lambda-p t))
  34. (custom-set-faces
  35.   ;; custom-set-faces was added by Custom.
  36.   ;; If you edit it by hand, you could mess it up, so be careful.
  37.   ;; Your init file should contain only one such instance.
  38.   ;; If there is more than one, they won't work right.
  39.  '(quack-pltish-defn-face ((((class color) (background dark)) (:foreground "dodgerblue" :weight bold)))))
  40. ;;;;(ac-config-default)
  41. ;;;;n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement