diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-02-21 15:54:45 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-02-21 15:54:45 +0800 |
commit | 0f09abda2f69da8298a500995abf7b4d84d1f408 (patch) | |
tree | ee6b1e4f608de731bd3f89b69d2f39a61774a924 /_emacs.d | |
parent | 1c5bf9244521b0437978a9a7b4a9ca91a82d8af3 (diff) | |
download | dotfiles-0f09abda2f69da8298a500995abf7b4d84d1f408.tar.bz2 |
prelude emacs: update personal configurations styles
Diffstat (limited to '_emacs.d')
-rw-r--r-- | _emacs.d/personal/latex.el | 17 | ||||
-rw-r--r-- | _emacs.d/personal/mu4e.el | 23 | ||||
-rw-r--r-- | _emacs.d/personal/orgmode.el | 27 | ||||
-rw-r--r-- | _emacs.d/personal/personal.el | 20 |
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) - |