aboutsummaryrefslogtreecommitdiffstats
path: root/_emacs.d/personal/config.el
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@gmail.com>2016-02-22 10:46:22 +0800
committerAaron LI <aaronly.me@gmail.com>2016-02-22 10:46:22 +0800
commitd5b93c1e6a108999f769e1fa7a3b9dc7c10798b0 (patch)
tree89747a3baabe4e71b84ad6482e4029c4de55f5ef /_emacs.d/personal/config.el
parent0f09abda2f69da8298a500995abf7b4d84d1f408 (diff)
downloaddotfiles-d5b93c1e6a108999f769e1fa7a3b9dc7c10798b0.tar.bz2
_emacs.d/personal: rename personal.el to config.el
Diffstat (limited to '_emacs.d/personal/config.el')
-rw-r--r--_emacs.d/personal/config.el23
1 files changed, 23 insertions, 0 deletions
diff --git a/_emacs.d/personal/config.el b/_emacs.d/personal/config.el
new file mode 100644
index 0000000..440257f
--- /dev/null
+++ b/_emacs.d/personal/config.el
@@ -0,0 +1,23 @@
+;;; ~/.emacs.d/personal/config.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)
+(key-chord-mode -1)
+
+;; Do NOT automatically clean whitespaces on save
+;(setq prelude-clean-whitespace-on-save nil)
+
+;; Disable `flyspell-mode': do not spellcheck on the fly
+;(setq prelude-flyspell nil)