]> git.siccegge.de Git - dotfiles/emacs.git/blobdiff - init.el
Use .emacs.d/init.el + transparency
[dotfiles/emacs.git] / init.el
diff --git a/init.el b/init.el
new file mode 100644 (file)
index 0000000..7da5c38
--- /dev/null
+++ b/init.el
@@ -0,0 +1,25 @@
+(add-to-list 'load-path "~/.emacs.d/lisp/")
+
+(require 'cl)
+
+(setq emacs-private-config (expand-file-name "~/.emacs.d/config/"))
+
+(load-file "~/.emacs-site.el")
+
+(setq custom-file "~/.emacs.d/emacs-custom.el")
+(load custom-file)
+
+(dolist (file-to-load '("fonts.el"
+                        "yas.el"
+                        "python.el"
+                        "c.el"
+                        "irony.el"
+                        "org.el"
+                        "slime.el"
+                        "whitespace.el"
+                        "general.el"
+                        "jabber.el"
+                        "erc.el"
+                        "pastebin.el"
+                        "transparent.el"))
+  (load-file (concat emacs-private-config file-to-load)))