blob: d91f536e151edb5f605a615e257cb2e08eaddd80 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
;; 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)
|