[emacs] Evil mode (and a shell alias)

This commit is contained in:
Eryn Wells 2014-08-22 08:05:15 -07:00
parent 2530e7bb2e
commit 70c9ea3165
38 changed files with 35123 additions and 0 deletions

8
emacs
View file

@ -8,10 +8,18 @@
; Spaces, not tabs!
(setq-default indent-tabs-mode 'nil)
; Follow symlinks
(setq-default vc-follow-symlinks 't)
; Use solarized color scheme
(add-to-list 'custom-theme-load-path "~/.emacs.d/solarized")
(load-theme 'solarized-dark t)
; Enable evil mode
(add-to-list 'load-path "~/.emacs.d/evil")
(require 'evil)
(evil-mode 1)
;;
;; ORG MODE
;;