-
Notifications
You must be signed in to change notification settings - Fork 1
/
customizations.el
79 lines (78 loc) · 4.16 KB
/
customizations.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
;; CUSTOM SETTINGS OF EMACS VARIABLES BELOW
(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.
'(ac-modes (quote (emacs-lisp-mode lisp-interaction-mode c-mode cc-mode c++-mode clojure-mode java-mode perl-mode cperl-mode python-mode ruby-mode ecmascript-mode javascript-mode js-mode js2-mode php-mode css-mode makefile-mode sh-mode fortran-mode f90-mode ada-mode xml-mode sgml-mode haml-mode sass-mode)))
'(ac-quick-help-delay 1.0)
'(coffee-js-mode (quote javascript-mode))
'(coffee-tab-width 2)
'(debug-on-error nil)
'(face-font-family-alternatives (quote (nil)))
'(font-use-system-font t)
'(global-auto-complete-mode t)
'(hscroll-margin 1)
'(indent-tabs-mode nil)
'(inferior-lisp-program "clj-env-dir")
'(inhibit-startup-screen t)
'(js-enabled-frameworks (quote (javascript)))
'(js-indent-level 2)
'(js-js-switch-tabs nil)
'(js2-auto-indent-p t)
'(js2-bounce-indent-p nil)
'(mouse-wheel-scroll-amount (quote (1 ((shift) . 1) ((control)))))
'(mumamo-indent-widen-per-major (quote ((nxhtml-mode ((html-mumamo-mode nxhtml-mumamo-mode))) (html-mode ((html-mumamo-mode nxhtml-mumamo-mode))))))
'(nxhtml-default-encoding (quote utf-8))
'(rails-ws:default-server-type "webrick")
'(safe-local-variable-values (quote ((require-final-newline))))
'(scroll-bar-mode nil)
'(sieve-manage-default-user "alex@alecnmk.com")
'(stack-trace-on-error nil)
'(standard-indent 2)
'(tab-always-indent (quote always))
'(tab-width 2)
'(tabbar-background-color "black")
'(tabbar-home-button (quote (("[o]") "[x]")))
'(tabbar-mode t nil (tabbar))
'(tabbar-mwheel-mode t nil (tabbar))
'(tabbar-scroll-left-button (quote (("<") "=")))
'(tabbar-scroll-right-button (quote ((">") "=")))
'(tabbar-separator (quote ("|")))
'(tabbar-use-images 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.
'(button ((((supports :underline t)) (:underline t))))
'(diff-added ((t (:inherit diff-changed))))
'(diff-indicator-added ((t (:inherit diff-added :foreground "green"))))
'(diff-indicator-removed ((t (:inherit diff-removed :foreground "red"))))
'(diff-removed ((t (:inherit diff-changed))))
'(egg-header ((t (:inherit variable-pitch :weight bold :height 1.1))))
'(font-lock-warning-face ((t (:foreground "red"))))
'(fringe ((t nil)))
'(header-line ((default (:inherit mode-line)) (((class color grayscale) (background dark)) (:background "grey20" :foreground "grey90" :box nil))))
'(mode-line ((t (:background "gray30" :foreground "white" :box nil))))
'(mode-line-buffer-id ((t (:inherit default :background "gray30" :foreground "white" :weight bold))))
'(mode-line-highlight ((((class color) (min-colors 88)) nil)))
'(mode-line-inactive ((default nil) (((class color) (min-colors 88) (background dark)) (:background "grey20" :foreground "grey80" :weight light))))
'(mumamo-background-chunk-major ((((class color) (min-colors 88) (background dark)) nil)))
'(mumamo-background-chunk-submode1 ((t nil)))
'(mumamo-background-chunk-submode2 ((t nil)))
'(mumamo-background-chunk-submode3 ((t nil)))
'(mumamo-background-chunk-submode4 ((t nil)))
'(scroll-bar ((t nil)))
'(tabbar-button ((t (:background "black" :foreground "lightgreen"))))
'(tabbar-button-face ((t (:inherit tabbar-default-face :foreground "green"))))
'(tabbar-button-highlight ((default nil) (nil nil)))
'(tabbar-default ((default nil) (nil (:background "black"))))
'(tabbar-default-face ((t (:inherit variable-pitch :foreground "gray60" :height 0.8))))
'(tabbar-highlight ((t (:foreground "lightgreen"))))
'(tabbar-selected ((t (:inherit tabbar-default :foreground "green"))))
'(tabbar-selected-face ((t (:inherit tabbar-default-face :foreground "green"))))
'(tabbar-separator ((t (:inherit tabbar-default :foreground "gray"))))
'(tabbar-unselected ((t (:inherit tabbar-default))))
'(tabbar-unselected-face ((t (:inherit tabbar-default-face))))
'(vertical-border ((nil nil))))