Advertisement
Guest User

Untitled

a guest
Sep 30th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Remove bloat.
  2. (tool-bar-mode nil)
  3. (menu-bar-mode nil)
  4. (scroll-bar-mode nil)
  5.  
  6. ; Set up Clojure.
  7. (require 'clojure-mode)
  8. (setq auto-mode-alist (append (list '("\\.clj\\'" . clojure-mode))
  9.                   auto-mode-alist))
  10. (setq inferior-lisp-program "java -jar
  11. C:/Users/PinkPrincess/Clojure/clojure.jar")
  12.  
  13. ; Make Emacs all shiny and pink.
  14. (set-face-background 'region "DeepPink")
  15. (setq default-frame-alist
  16.       '((cursor-color . "DeepPink")
  17.     (foreground-color . "HotPink")
  18.     (background-color . "Black")))
  19.  
  20. ; Make the audible bell shut the shit up.
  21. (setq visible-bell t)
  22.  
  23. ; Don't back stuff up.
  24. (setq make-backup-files nil)
  25. (setq auto-save-list-file-name nil)
  26. (setq auto-save-default nil)
  27.  
  28. ; Set some highlighting.
  29. (setq search-highlight t)
  30. (setq query-replace-highlight t)
  31.  
  32. ; Show column numbers and wrap at 80 chars. No one can possibly need more!
  33. (column-number-mode t)
  34. (setq-default fill-column 80)
  35. (setq-default auto-fill-function 'do-auto-fill)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement