2013-07-08 01:15:05 +02:00
|
|
|
;; 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
|
2013-07-08 01:39:36 +02:00
|
|
|
ace-jump-mode)
|
|
|
|
|
2013-07-08 01:15:05 +02:00
|
|
|
"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")
|
2013-07-08 01:52:03 +02:00
|
|
|
(load "~/.emacs.d/init-modes.el")
|
2013-07-08 01:15:05 +02:00
|
|
|
|
|
|
|
(setq custom-file "~/.emacs.d/init-custom.el")
|
|
|
|
(load custom-file)
|
|
|
|
|
2013-07-08 01:39:36 +02:00
|
|
|
;; Other packages that need manual installation
|
|
|
|
(custom-download-script "https://raw.github.com/dimitri/switch-window/master/switch-window.el"
|
|
|
|
"switch-window.el")
|
|
|
|
|
2013-07-08 01:15:05 +02:00
|
|
|
;; IRC configuration (erc)
|
|
|
|
;; Actual servers and such are loaded from irc.el
|
|
|
|
(load "~/.emacs.d/irc")
|
|
|
|
|
|
|
|
;; Seed RNG
|
|
|
|
(random t)
|
|
|
|
|
2013-07-08 02:18:19 +02:00
|
|
|
;; Add a fullscreen toggle
|
|
|
|
(global-set-key (kbd "M-RET") 'toggle-frame-fullscreen)
|
|
|
|
|
2013-07-08 01:15:05 +02:00
|
|
|
;; Start server for emacsclient
|
|
|
|
(server-start)
|