tvl-depot/init.el
2014-10-21 19:37:19 +02:00

117 lines
2.4 KiB
EmacsLisp

;; Emacs 24 or higher!
(when (< emacs-major-version 24)
(error "This setup requires Emacs v24, or higher. You have: v%d" emacs-major-version))
;; 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/"))
;; And load things!
(package-refresh-contents)
(package-initialize)
(defvar my-pkgs
'(; Basic functionality
ace-jump-mode
ack-and-a-half
browse-kill-ring
confluence
dash
flx-ido
flycheck
idle-highlight-mode
ido-ubiquitous
iy-go-to-char
magit
multiple-cursors
mvn
nyan-mode
paredit
password-store
projectile
puppet-mode
rainbow-delimiters
rainbow-mode
rust-mode
s
smex
smart-mode-line
switch-window
undo-tree
; Clojure
ac-cider-compliment
cider
clojure-mode
)
"A list of packages to install at launch.")
(defvar evil-pkgs
'(evil
evil-leader
evil-tabs
evil-paredit
key-chord
surround)
"Evil related packages")
(dolist (p my-pkgs)
(when (not (package-installed-p p))
(package-install p)))
;; Are we on a mac?
(setq is-mac (equal system-type 'darwin))
;; Or on Linux?
(setq is-linux (equal system-type 'gnu/linux))
;; Is this being used by a vim user?
(setq is-vim-mode nil)
;; What's the home folder?
(defvar home-dir)
(setq home-dir (expand-file-name "~"))
(when is-vim-mode
(dolist (p evil-pkgs)
(when (not (package-installed-p p))
(package-install p))))
(add-to-list 'load-path user-emacs-directory)
(mapc 'require '(functions
settings
modes
bindings
eshell-setup))
(when is-vim-mode
(require 'init-evil))
(setq custom-file (concat user-emacs-directory "init/custom.el"))
(load custom-file)
;; A file with machine specific settings.
;(load-file-if-exists (concat home-dir "/.emacs.d/init-local.el"))
;; IRC configuration
;; Actual servers and such are loaded from irc.el
; (load-file-if-exists (concat home-dir "/.emacs.d/init-irc.el"))
;; Load magnars' string manipulation library
(require 's)
(require 'ack-and-a-half)
;; Seed RNG
(random t)
;; SML should respect theme colours
; (setq sml/theme 'black)
(sml/setup)