From: Maximilian Friedersdorff Date: Sun, 23 Oct 2016 07:44:08 +0000 (+0100) Subject: Add basic config for emacs X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=49e29b5077980c4604517e6df189a2f9013010dc;hp=-c;p=max%2Fdotfiles.git Add basic config for emacs --- 49e29b5077980c4604517e6df189a2f9013010dc diff --git a/emacs/.emacs b/emacs/.emacs new file mode 100644 index 0000000..da4d39a --- /dev/null +++ b/emacs/.emacs @@ -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)