aboutsummaryrefslogtreecommitdiffstats
path: root/_emacs.d/personal/10-config.el
blob: 215962b192921f0e06d62f0f0c2d0bf18b61ccee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;;; ~/.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)

;; Prevent kill and yank commands from accessing the clipboard
(setq x-select-enable-clipboard nil)