This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
init.el
48 lines (45 loc) · 1.85 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
;; This a sample emacs init file ~/.emacs or ~/.emacs.d/init.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.
'(ers-env-variables
(quote
(("JAVA_HOME" . "/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home")
("EDITOR" . "emacsclient")
("LC_ALL" . "C")
("LANG" . "en"))))
'(ers-erc-channel-list
(quote
((".*" "##java" "#freebsd" "#grails" "#emacs"))))
'(erc-autojoin-mode 1)
'(ers-powerline-enabled t)
'(ers-tab-size 4)
'(ers-ui-font "Monospace-12")
'(ers-ui-theme (quote wombat))
'(ers-ui-theme-console (quote wombat))
'(inhibit-startup-screen t)
'(personal-blog-name "wordpress-me_in_dot_authinfo")
'(corporate-blog-name "wordpress-myorganization_in_dot_authinfo")
'(ers-pim-mail-address "[email protected]")
'(ers-pim-public-mail-address "[email protected]")
'(ers-pim-organization "Me")
'(ers-pim-full-name "Me me")
'(personal-blog-url "http://me.wordpress.com/xmlrpc.php")
'(corporate-blog-url "http://me.com/xmlrpc.php")
'(send-mail-function (quote smtpmail-send-it)))
(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.
)
;; require few libs
(mapc #'require '(org ob-tangle cl-lib))
;; Just for testing, for the typical setup see the README file, use the full path to startup.org..
(org-babel-load-file (expand-file-name
(concat
(file-name-as-directory
(concat (file-name-as-directory (file-name-directory load-file-name)) "bootstrap"))
"startup.org")))