-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
50 lines (47 loc) · 2.8 KB
/
init.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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; loadpath; this will recursivel add all dirs in 'elisp-path' to load-path
(defconst elisp-path '("~/.emacs.d/lib/")) ;; my elisp directories
(mapcar '(lambda(p)
(add-to-list 'load-path p)
(cd p) (normal-top-level-add-subdirs-to-load-path)) elisp-path)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Load configuration
(load "~/.emacs.d/utils.el")
(load "~/.emacs.d/look&feel.el")
(load "~/.emacs.d/major-modes.el")
(load "~/.emacs.d/minor-modes.el")
(load "~/.emacs.d/misc.el")
(load "~/.emacs.d/keys.el")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(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.
'(c-delete-function (quote delete-char))
'(delete-selection-mode t)
'(exec-path (quote ("/usr/bin" "/bin" "/usr/sbin" "/sbin" "/opt/local/libexec/git-core" "/opt/local/bin")))
'(glasses-face (quote bold))
'(glasses-original-separator "")
'(glasses-separator "")
'(hippie-expand-try-functions-list (quote (try-expand-all-abbrevs try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-file-name-partially try-complete-file-name try-complete-lisp-symbol-partially try-complete-lisp-symbol)))
'(html-script-regions (quote (("<%" "%>" visual-basic-mode) ("<\\?" "\\?>" php-mode c-mode) ("<style[ ]+type=\"text/css\"" "</style>" css-mode c-mode) ("<style[ ]+type=\"css\"" "</style>" css-mode c-mode) ("<script[ ]+language=\"vbscript\"[ ]*>" "</script>" visual-basic-mode) ("<script[ ]+type=\"text/vbscript\"[ ]*>" "</script>" visual-basic-mode) ("<script[ ]+language=\"javascript\"[ ]*>" "</script>" js2-mode javascript-mode ecmascript-mode javascript-generic-mode c-mode) ("<script[ ]+type=\"text/javascript\"[ ]*>" "</script>" js2-mode javascript-mode ecmascript-mode javascript-generic-mode c-mode))))
'(ido-enable-flex-matching t)
'(ido-max-window-height 4)
'(ido-use-filename-at-point nil)
'(locate-command "mdfind")
'(mumamo-chunk-coloring (quote no-chunks-colored))
'(nxhtml-default-encoding (quote utf-8))
'(nxhtml-skip-welcome t)
'(nxml-slash-auto-complete-flag t)
'(paren-match-face (quote paren-face-match-light))
'(paren-sexp-mode nil)
'(show-paren-mode t)
'(transient-mark-mode t))
(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.
)