Advertisement
Guest User

Untitled

a guest
Jul 6th, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.26 KB | None | 0 0
  1. (custom-set-variables
  2.  ;; custom-set-variables was added by Custom.
  3.  ;; If you edit it by hand, you could mess it up, so be careful.
  4.  ;; Your init file should contain only one such instance.
  5.  ;; If there is more than one, they won't work right.
  6. '(cua-mode t nil (cua-base))
  7.  '(custom-enabled-themes (quote (tango)))
  8. '(custom-safe-themes (quote ("0dfaf9ffa706dd9d81c46b9eb2755c14f78b41d538d0d166a5c7229edaefc1f3" default)))
  9.  '(font-use-system-font t)
  10. '(show-paren-mode t)
  11.  '(text-mode-hook (quote (turn-on-auto-fill text-mode-hook-identify))))
  12. (custom-set-faces
  13. ;; custom-set-faces was added by Custom.
  14. ;; If you edit it by hand, you could mess it up, so be careful.
  15. ;; Your init file should contain only one such instance.
  16. ;; If there is more than one, they won't work right.
  17.  '(default ((t (:inherit nil :stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 113 :width normal :foundry "unknown" :family "Droid Sans Mono")))))
  18.  
  19.  
  20. (add-to-list 'load-path "~/.emacs.d/")
  21. (require 'auto-complete-config)
  22. (add-to-list 'ac-dictionary-directories "~/.emacs.d//ac-dict")
  23. (ac-config-default)
  24.  
  25. (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement