-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustom.el
50 lines (49 loc) · 1.98 KB
/
custom.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(coffee-tab-width 2)
'(column-number-mode t)
'(css-indent-offset 2)
'(cua-mode t nil (cua-base))
'(erc-hide-list (quote ("JOIN" "NICK" "PART" "QUIT")))
'(erc-nick "dwwoelfel")
'(erc-prompt-for-password nil)
'(font-use-system-font t)
'(haml-coffee-args-compile
(quote
("--disable-html-escaping" "--disable-clean-value" "--disable-html-attribute-escaping")))
'(icicle-download-dir "/home/daniel/.emacs.d/site-lisp/icicles")
'(ido-enable-flex-matching t)
'(indent-tabs-mode nil)
'(inhibit-startup-screen t)
'(js-indent-level 2)
'(less-css-lessc-options (quote ("-x")))
'(org-agenda-files (quote ("/home/daniel/Dropbox/cakehealth/cake_health.org")))
'(org-modules
(quote
(org-bbdb org-bibtex org-docview org-gnus org-info org-jsinfo org-irc org-mew org-mhe org-rmail org-vm org-wl org-w3m org-drill)))
'(package-selected-packages (quote (inflections queue)))
'(safe-local-variable-values
(quote
((less-css-output-directory . "../css")
(less-css-compile-at-save . t)
(ruby-compilation-executable . "ruby")
(ruby-compilation-executable . "ruby1.8")
(ruby-compilation-executable . "ruby1.9")
(ruby-compilation-executable . "rbx")
(ruby-compilation-executable . "jruby"))))
'(scroll-bar-mode (quote right))
'(show-paren-mode t)
'(size-indication-mode t)
'(temporary-file-directory "/home/daniel/.saves")
'(tool-bar-mode nil)
'(use-file-dialog nil))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(flymake-errline ((((class color)) (:background "pink"))))
'(flymake-warnline ((((class color)) (:background "#EEEE00")))))