about summary refs log tree commit diff
path: root/emacs.d/init.el
diff options
context:
space:
mode:
authorVincent Ambo <vincent@spotify.com>2013-07-07T23·15+0200
committerVincent Ambo <vincent@spotify.com>2013-07-07T23·15+0200
commit0d133eceb395d44b7a234b5f455d9d92bba43f4e (patch)
tree10c09f8a56fdeb900e2ba62ba944642ad39838a9 /emacs.d/init.el
parent90f95a6a3dd5a95a3df315a9dfcdf8ea94d59104 (diff)
Split up configuration in five files. I wrote a nice commit message explaining this, but I wrote it in vi and it died on me.
Diffstat (limited to 'emacs.d/init.el')
-rw-r--r--emacs.d/init.el50
1 files changed, 50 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
new file mode 100644
index 0000000000..7d8733fe48
--- /dev/null
+++ b/emacs.d/init.el
@@ -0,0 +1,50 @@
+;; Configure package manager
+(require 'package)
+
+;; Add Marmalade repo
+(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
+
+;; ... and melpa. Melpa packages that exist on marmalade will have
+;; precendence.
+(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))
+
+(package-initialize)
+
+(when (not package-archive-contents)
+  (package-refresh-contents))
+
+;; Important packages
+(defvar my-pkgs '(starter-kit-bindings
+                  haskell-mode
+                  markdown-mode
+                  magit
+                  leuven-theme
+                  projectile
+                  rainbow-delimiters
+                  nrepl
+                  clojure-mode
+                  ace-jump-mode
+                  switch-window)
+  "A list of packages to install at launch.")
+
+(dolist (p my-pkgs)
+  (when (not (package-installed-p p))
+    (package-install p)))
+
+
+(load "~/.emacs.d/init-functions.el")
+(load "~/.emacs.d/init-settings.el")
+
+(setq custom-file "~/.emacs.d/init-custom.el")
+(load custom-file)
+
+;; IRC configuration (erc)
+;; Actual servers and such are loaded from irc.el
+(require 'erc)
+(load "~/.emacs.d/irc")
+
+;; Seed RNG
+(random t)
+
+;; Start server for emacsclient
+(server-start)