forked from tf/emacs-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
34 lines (26 loc) · 745 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
(add-to-list 'load-path (expand-file-name "~/.emacs.d/lisp"))
(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/lisp/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)
;;(windmove-default-keybindings)x
(winner-mode)
(server-start)
(rvm-use-default)
(load "~/.emacs.d/color/custom-dark" nil t)
(color-theme-custom-dark)
(put 'upcase-region 'disabled nil)