]> git.friedersdorff.com Git - max/dotfiles.git/blob - emacs/.emacs
Add basic config for emacs
[max/dotfiles.git] / emacs / .emacs
1 (require 'package)
2 (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
3 (package-initialize)
4 (custom-set-variables
5  ;; custom-set-variables was added by Custom.
6  ;; If you edit it by hand, you could mess it up, so be careful.
7  ;; Your init file should contain only one such instance.
8  ;; If there is more than one, they won't work right.
9  '(package-selected-packages (quote (org evil))))
10 (custom-set-faces
11  ;; custom-set-faces was added by Custom.
12  ;; If you edit it by hand, you could mess it up, so be careful.
13  ;; Your init file should contain only one such instance.
14  ;; If there is more than one, they won't work right.
15  )
16
17 (require 'evil)
18 (evil-mode 1)
19
20
21 (load-theme 'molokai t)