]> git.siccegge.de Git - dotfiles/emacs.git/blob - init.el
Update irony-mode foo
[dotfiles/emacs.git] / init.el
1 (add-to-list 'load-path "~/.emacs.d/lisp/")
2
3 (require 'cl)
4
5 (setq emacs-private-config (expand-file-name "~/.emacs.d/config/"))
6 (setq gnus-init-file (expand-file-name "~/.emacs.d/gnus.el"))
7
8 (load-file "~/.emacs.d/emacs-site.el")
9
10 (setq custom-file "~/.emacs.d/emacs-custom.el")
11 (load custom-file)
12
13 (dolist (file-to-load '("general.el"
14 "fonts.el"
15 "yas.el"
16 "python.el"
17 "c.el"
18 "irony.el"
19 "org.el"
20 "slime.el"
21 "whitespace.el"
22 "jabber.el"
23 "erc.el"
24 "pastebin.el"
25 "transparent.el"))
26 (load-file (concat emacs-private-config file-to-load)))