-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.el
38 lines (28 loc) · 770 Bytes
/
init.el
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
(add-to-list 'load-path "~/.emacs.d")
(add-to-list 'load-path "~/.emacs.d/vendor/")
(add-to-list 'load-path "~/.emacs.d/vendor/rails-reloaded")
(when (>= emacs-major-version 24)
(require 'package)
(add-to-list
'package-archives
'("melpa" . "http://melpa.org/packages/")
t)
(package-initialize))
(setq custom-file "~/.emacs.d/custom.el")
(load custom-file nil t)
(load "vendor" nil t)
(load "lib" nil t)
(load "etc" nil t)
(load "abbrevs" nil t)
(setq inhibit-splash-screen t)
(maximize-editor)
(ido-mode 1)
(column-number-mode 1)
(windmove-default-keybindings)
(winner-mode)
(server-start)
(rvm-use-default)
(load "color/custom-dark" nil t)
(color-theme-custom-dark)
(put 'upcase-region 'disabled nil)
(set-face-background 'default "undefined")