aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--_emacs.d/personal/latex.el17
-rw-r--r--_emacs.d/personal/mu4e.el23
-rw-r--r--_emacs.d/personal/orgmode.el27
-rw-r--r--_emacs.d/personal/personal.el20
4 files changed, 60 insertions, 27 deletions
diff --git a/_emacs.d/personal/latex.el b/_emacs.d/personal/latex.el
new file mode 100644
index 0000000..4600c03
--- /dev/null
+++ b/_emacs.d/personal/latex.el
@@ -0,0 +1,17 @@
+;;; ~/.emacs.d/personal/latex.el --- LaTeX settings for Prelude Emacs
+;;
+;; -*- mode: emacs-lisp -*-
+;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:
+;;
+;; Credits: https://github.com/bbatsov/prelude/wiki/LaTeX
+;;
+;; Aaron LI
+;; 2016-02-21
+;;
+
+;;; Commentary:
+;; LaTeX settings for Prelude Emacs.
+
+;;; Code:
+
+(setq-default TeX-engine 'xetex)
diff --git a/_emacs.d/personal/mu4e.el b/_emacs.d/personal/mu4e.el
index 0c63e48..6878d5d 100644
--- a/_emacs.d/personal/mu4e.el
+++ b/_emacs.d/personal/mu4e.el
@@ -1,11 +1,17 @@
-;;; -*- mode: emacs-lisp -*-
-;;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:
-;;;
-;;; mu4e (mu for emacs) configurations
-;;;
-;;; Aaron LI
-;;; 2016-02-21
-;;;
+;;; ~/.emacs.d/personal/mu4e.el --- mu4e (mu for Emacs) configurations
+;;
+;; -*- mode: emacs-lisp -*-
+;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:
+;;
+;; Aaron LI
+;; 2016-02-21
+;;
+
+;;; Commentary:
+;; mu4e (mu for Emacs) configurations
+;; mu (maildir indexer/searcher): https://github.com/djcb/mu
+
+;;; Code:
;; mu4e package path
(add-to-list 'load-path "~/local/emacs/site-lisp/mu4e")
@@ -269,4 +275,3 @@
;; set `mu4e' as emacs' default email program
(setq mail-user-agent 'mu4e-user-agent)
-
diff --git a/_emacs.d/personal/orgmode.el b/_emacs.d/personal/orgmode.el
index 87cd7d1..0d609e7 100644
--- a/_emacs.d/personal/orgmode.el
+++ b/_emacs.d/personal/orgmode.el
@@ -1,14 +1,19 @@
-;;; -*- mode: emacs-lisp -*-
-;;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:
-;;;
-;;; Org-mode configurations
-;;;
-;;; Credit:
-;;; [1] http://www.john2x.com/emacs.html
-;;;
-;;; Aaron LI
-;;; 2016-02-21
-;;;
+;;; ~/.emacs.d/personal/orgmode.el --- Org-mode configurations
+;;
+;; -*- mode: emacs-lisp -*-
+;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:
+;;
+;; Credit:
+;; [1] http://www.john2x.com/emacs.html
+;;
+;; Aaron LI
+;; 2016-02-21
+;;
+
+;;; Commentary:
+;; Org-mode configurations for Emacs
+
+;;; Code:
(setq org-directory "~/org")
(setq org-todo-keywords
diff --git a/_emacs.d/personal/personal.el b/_emacs.d/personal/personal.el
index 44fb6bf..2a851ab 100644
--- a/_emacs.d/personal/personal.el
+++ b/_emacs.d/personal/personal.el
@@ -1,9 +1,16 @@
-;;;
-;;; ~/.emacs.d/personal/personal.el
-;;;
-;;; Aaron LI
-;;; 2016-02-21
-;;;
+;;; ~/.emacs.d/personal/personal.el --- Custom configurations for Prelude
+;;
+;; -*- mode: emacs-lisp -*-
+;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:
+;;
+;; Aaron LI
+;; 2016-02-21
+;;
+
+;;; Commentary:
+;; Custom configurations for Prelude Emacs kit.
+
+;;; Code:
;; Disable `key-chord-mode' for `evil-mode'
;; (or just do not enable the `prelude-key-chord' module)
@@ -14,4 +21,3 @@
;; Disable `flyspell-mode': do not spellcheck on the fly
;(setq prelude-flyspell nil)
-