]> git.friedersdorff.com Git - max/dotfiles.git/commitdiff
Add basic config for emacs
authorMaximilian Friedersdorff <maxf130@gmail.com>
Sun, 23 Oct 2016 07:44:08 +0000 (08:44 +0100)
committerMaximilian Friedersdorff <maxf130@gmail.com>
Sun, 23 Oct 2016 07:44:08 +0000 (08:44 +0100)
emacs/.emacs [new file with mode: 0644]

diff --git a/emacs/.emacs b/emacs/.emacs
new file mode 100644 (file)
index 0000000..da4d39a
--- /dev/null
@@ -0,0 +1,21 @@
+(require 'package)
+(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
+(package-initialize)
+(custom-set-variables
+ ;; custom-set-variables was added by Custom.
+ ;; If you edit it by hand, you could mess it up, so be careful.
+ ;; Your init file should contain only one such instance.
+ ;; If there is more than one, they won't work right.
+ '(package-selected-packages (quote (org evil))))
+(custom-set-faces
+ ;; custom-set-faces was added by Custom.
+ ;; If you edit it by hand, you could mess it up, so be careful.
+ ;; Your init file should contain only one such instance.
+ ;; If there is more than one, they won't work right.
+ )
+
+(require 'evil)
+(evil-mode 1)
+
+
+(load-theme 'molokai t)