emacs - fix indent broken by variable pitch mode
[dotfiles.git] / emacs.d / config.org
1 #+TITLE: Emacs Configuration file
2 #+AUTHOR: Peng Li
3 #+EMAIL: seudut@gmail.com
4
5 * Introduction
6
7 Most config are just copied from [[https://github.com/howardabrams/dot-files][howardabrams]]'s and [[https://github.com/abo-abo/oremacs][abo-abo's]] dotfiles
8
9 * Basic Settings
10 ** Setting loading Path
11 Set system PATH and emacs exec path
12 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
13   (setenv "PATH" (concat (getenv "PATH")
14                          ":" "/usr/local/bin"
15                          ":" "/Library/TeX/texbin"))
16   (setq exec-path (append exec-path '("/usr/local/bin")))
17   (setq exec-path (append exec-path '("/Library/TeX/texbin/")))
18 #+END_SRC
19
20 ** Package Initialization
21 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
22   (require 'package)
23
24   (setq package-archives '(("mepla" . "http://melpa.milkbox.net/packages/")
25                            ("gnu" . "http://elpa.gnu.org/packages/")
26                            ("org" . "http://orgmode.org/elpa/")))
27
28   (package-initialize)
29 #+END_SRC       
30
31 ** General Setting
32 *** scroll bar, tool-bar and menu-bar
33 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
34   (scroll-bar-mode 0)
35   (tool-bar-mode 0)
36
37   (if window-system
38       (menu-bar-mode 1)
39     (menu-bar-mode 0))
40
41   ;; (setq debug-on-error t)
42   (setq inhibit-startup-message t)
43
44   (defalias 'yes-or-no-p 'y-or-n-p)
45   (show-paren-mode 1)
46   ;; don't backupf
47   (setq make-backup-files nil)
48
49   ;;supress the redefined warning at startup
50   (setq ad-redefinition-action 'accept)
51 #+END_SRC
52
53 *** Custom file 
54 #+BEGIN_SRC emacs-lisp :tangle yes :results silent 
55   (setq custom-file "~/.emacs.d/custom.el")
56   (if (file-exists-p custom-file)
57       (load custom-file))
58 #+END_SRC
59
60 *** Switch the focus to help window when it appears
61 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
62   (setq help-window-select t)
63 #+END_SRC
64
65 *** Set default window size
66 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
67   (setq initial-frame-alist
68         '((width . 120)
69           (height . 50)))
70
71   ;; (setq-default indicate-empty-lines t)
72 #+END_SRC
73
74 *** Stop auto save
75 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
76   (setq auto-save-default nil)
77
78   ;; restore last session
79   ;; (desktop-save-mode t)
80 #+END_SRC
81
82 *** temp folder
83 Make a temp directory for all cache/history files
84 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
85   (defconst sd-temp-directory
86     (file-name-as-directory "~/.emacs.d/temp"))
87
88   (unless (file-exists-p sd-temp-directory)
89     (mkdir sd-temp-directory))
90 #+END_SRC
91
92 *** Save minibuffer history
93 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
94   (setq savehist-file (concat sd-temp-directory "history"))
95   (setq history-length 1000)
96   (setq savehist-additional-variables '(kill-ring search-ring regexp-search-ring))
97   (savehist-mode 1)
98
99   ;; set temp file path for recentf and auto-save
100   (setq recentf-save-file (concat sd-temp-directory "recentf"))
101   (setq auto-save-list-file-prefix (concat sd-temp-directory "auto-save-list/.saves-"))
102 #+END_SRC
103
104 *** Max file size
105 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
106   (setq large-file-warning-threshold nil)
107 #+END_SRC
108
109 * Package Management Tools
110 ** Use-package
111 Using [[https://github.com/jwiegley/use-package][use-package]] to manage emacs packages
112 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
113   (unless (package-installed-p 'use-package)
114     (package-refresh-contents)
115     (package-install 'use-package))
116
117   (require 'use-package)
118 #+END_SRC
119
120 ** El-get
121 [[https://github.com/dimitri/el-get][El-get]] is package management tool, whicl allows to install external elisp package from any git repository not in mepla. 
122 Check out [[http://tapoueh.org/emacs/el-get.html][el-get]].
123 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
124   (use-package el-get
125     :ensure t
126     :init
127     (add-to-list 'load-path "~/.emacs.d/el-get"))
128 #+END_SRC
129
130 ** paradox
131 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
132   (use-package paradox
133     :ensure t)
134 #+END_SRC
135
136 * Mac Specific
137 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
138   ;; (defconst *is-a-mac* (eq system-type 'darwin))
139   ;; (setq mouse-wheel-scroll-amount '(1
140   ;;                                   ((shift) . 5)
141   ;;                                   ((control))))
142
143
144   ;; (setq-default indicate-empty-lines t)
145 #+END_SRC
146
147 * Color and Fonts Settings
148 ** highlight current line
149 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
150   ;; (global-hl-line-mode)
151   ;; don't want high light current line in eshell/term mode
152   (add-hook 'prog-mode-hook 'hl-line-mode)
153   (add-hook 'text-mode-hook 'hl-line-mode)
154   (add-hook 'dired-mode-hook 'hl-line-mode)
155 #+END_SRC
156
157 ** Smart Comments
158
159 [[https://github.com/paldepind/smart-comment][smart-comments]]
160
161 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
162
163   (use-package smart-comment
164     :ensure t
165     :bind ("M-;" . smart-conmment))
166
167 #+END_SRC
168
169 ** Font Setting
170 *** syntax highlighting
171 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
172   (global-font-lock-mode 1)
173 #+END_SRC
174
175 *** [[https://github.com/i-tu/Hasklig][Hasklig]] and Source Code Pro, defined fonts family
176 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
177   (if window-system
178       (defvar sd/fixed-font-family
179         (cond ((x-list-fonts "Hasklig")         "Hasklig")
180               ((x-list-fonts "Source Code Pro") "Source Code Pro:weight") ;; weigth=light
181               ((x-list-fonts "Anonymous Pro")   "Anonymous Pro")
182               ((x-list-fonts "M+ 1mn")          "M+ 1mn"))
183         "The fixed width font based on what is installed, `nil' if not defined."))
184 #+END_SRC
185
186 Setting the fonts alignment issue
187 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
188    (if window-system
189        (when sd/fixed-font-family
190          (set-frame-font sd/fixed-font-family)
191          (set-face-attribute 'default nil :font sd/fixed-font-family :height 120)
192          (set-face-font 'default sd/fixed-font-family)))
193 #+END_SRC
194
195 *** Chinese fonts
196 Fix the font alignment issue when both Chinese and English hybird in org-mode table. Refer [[http://coldnew.github.io/blog/2013/11-16_d2f3a/][解決 org-mode 表格內中英文對齊的問題]]
197 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
198   (defvar emacs-english-font "Source Code Pro" "The font name of English.")
199
200   (defvar emacs-cjk-font "STHeiti" "The font name for CJK.")
201
202   (defvar emacs-font-size-pair '(13 . 16) "Default font size pair for (english . chinese)")
203
204   (defvar emacs-font-size-pair-list
205     '(( 5 .  6) (10 . 12)
206       (11 . 14) (12 . 14)
207       (13 . 16) (14 . 16) (15 . 18) (16 . 20) (17 . 20)
208       (18 . 22) (19 . 22) (20 . 24) (21 . 26)
209       (24 . 28) (26 . 32) (28 . 34)
210       (30 . 36) (34 . 40) (36 . 44))
211     "This list is used to store matching (englis . chinese) font-size.")
212
213   (defun font-exist-p (fontname)
214     "Test if this font is exist or not."
215     (if (or (not fontname) (string= fontname ""))
216         nil
217       (if (not (x-list-fonts fontname)) nil t)))
218
219   (defun set-font (english chinese size-pair)
220     "Setup emacs English and Chinese font on x window-system."
221     (if (font-exist-p english)
222         (set-frame-font (format "%s:pixelsize=%d" english (car size-pair)) t))
223     (if (font-exist-p chinese)
224         (dolist (charset '(han cjk-misc) ;; '(kana han symbol cjk-misc bopomofo)
225                  )
226           (set-fontset-font (frame-parameter nil 'font) charset
227                             (font-spec :family chinese :size (cdr size-pair))))))
228
229   (defun emacs-step-font-size (step)
230     "Increase/Decrease emacs's font size."
231     (let ((scale-steps emacs-font-size-pair-list))
232       (if (< step 0) (setq scale-steps (reverse scale-steps)))
233       (setq emacs-font-size-pair
234             (or (cadr (member emacs-font-size-pair scale-steps))
235                 emacs-font-size-pair))
236       (when emacs-font-size-pair
237         (message "emacs font size set to %.1f" (car emacs-font-size-pair))
238         (set-font emacs-english-font emacs-cjk-font emacs-font-size-pair))))
239
240   (defun increase-emacs-font-size ()
241     "Decrease emacs's font-size acording emacs-font-size-pair-list."
242     (interactive) (emacs-step-font-size 1))
243
244   (defun decrease-emacs-font-size ()
245     "Increase emacs's font-size acording emacs-font-size-pair-list."
246     (interactive) (emacs-step-font-size -1))
247 #+END_SRC
248
249 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
250   ;; Setup font size based on emacs-font-size-pair
251   ;; (if window-system
252   ;;     (set-font emacs-english-font emacs-cjk-font '(13 . 16)))
253     
254
255   ;; (global-set-key (kbd "s-=") 'increase-emacs-font-size)
256   ;; (global-set-key (kbd "s--") 'decrease-emacs-font-size)
257
258   ;; set different fonts (chinese) size for org-mode.
259   (defun sd/org-buffer-font ()
260     "My font setting for org-mode"
261     (interactive)
262     (setq buffer-face-mode-face '(:family "Source Sans Code" :height 160))
263     (buffer-face-mode))
264
265   ;; (add-hook 'org-mode-hook 'sd/org-buffer-font)
266 #+END_SRC
267
268 ** Color Theme
269
270 Loading theme should be after all required loaded, refere [[https://github.com/jwiegley/use-package][:defer]] in =use-package=
271
272 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
273   (setq vc-follow-symlinks t)
274
275   (use-package color-theme
276     :ensure t
277     :init (require 'color-theme)
278     :config (use-package color-theme-sanityinc-tomorrow
279               :ensure t
280               :no-require t
281               :config
282               ;; (load-theme 'sanityinc-tomorrow-bright t)
283               (load-theme 'molokai t)
284               ))
285
286   ;(eval-after-load 'color-theme
287   ;  (load-theme 'sanityinc-tomorrow-bright t))
288
289 #+END_SRC
290
291 Change the Org-mode colors 
292
293 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
294
295   (defun org-src-color-blocks-light ()
296     "Colors the block headers and footers to make them stand out more for lighter themes"
297     (interactive)
298     (custom-set-faces
299      '(org-block-begin-line
300       ((t (:underline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
301      '(org-block-background
302        ((t (:background "#FFFFEA"))))
303      '(org-block
304        ((t (:background "#FFFFEA"))))
305      '(org-block-end-line
306        ((t (:overline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
307
308      '(mode-line-buffer-id ((t (:foreground "#005000" :bold t))))
309      '(which-func ((t (:foreground "#008000"))))))
310
311   (defun org-src-color-blocks-dark ()
312     "Colors the block headers and footers to make them stand out more for dark themes"
313     (interactive)
314     (custom-set-faces
315      '(org-block-begin-line
316        ((t (:foreground "#008ED1" :background "#002E41"))))
317      '(org-block-background
318        ((t (:background "#000000"))))
319      '(org-block
320        ((t (:background "#000000"))))
321      '(org-block-end-line
322        ((t (:foreground "#008ED1" :background "#002E41"))))
323
324      '(mode-line-buffer-id ((t (:foreground "black" :bold t))))
325      '(which-func ((t (:foreground "green"))))))
326
327   (org-src-color-blocks-dark)
328
329 #+END_SRC
330
331 improve color for org-mode
332 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
333   (deftheme ha/org-theme "Sub-theme to beautify org mode")
334
335   (if window-system
336       (defvar sd/variable-font-tuple
337         (cond ((x-list-fonts "Source Sans Pro") '(:font "Source Sans Pro"))
338               ((x-list-fonts "Lucida Grande")   '(:font "Lucida Grande"))
339               ((x-list-fonts "Verdana")         '(:font "Verdana"))
340               ((x-family-fonts "Sans Serif")    '(:family "Sans Serif"))
341               (nil (warn "Cannot find a Sans Serif Font.  Install Source Sans Pro.")))
342         "My variable width font available to org-mode files and whatnot."))
343
344   (defun sd/org-color ()
345     (let* ((sd/fixed-font-tuple (list :font sd/fixed-font-family))
346            (base-font-color     (face-foreground 'default nil 'default))
347            (background-color    (face-background 'default nil 'default))
348            (primary-color       (face-foreground 'mode-line nil))
349            (secondary-color     (face-background 'secondary-selection nil 'region))
350            (base-height         (face-attribute 'default :height))
351            (headline           `(:inherit default :weight bold :foreground ,base-font-color)))
352       (custom-theme-set-faces 'ha/org-theme
353                               `(org-agenda-structure ((t (:inherit default :height 2.0 :underline nil))))
354                               `(org-verbatim ((t (:inherit 'fixed-pitched :foreground "#aef"))))
355                               `(org-table ((t (:inherit 'fixed-pitched))))
356                               `(org-block ((t (:inherit 'fixed-pitched))))
357                               `(org-block-background ((t (:inherit 'fixed-pitched))))
358                               `(org-block-begin-line ((t (:inherit 'fixed-pitched))))
359                               `(org-block-end-line ((t (:inherit 'fixed-pitched))))
360                               `(org-level-8 ((t (,@headline ,@sd/variable-font-tuple))))
361                               `(org-level-7 ((t (,@headline ,@sd/variable-font-tuple))))
362                               `(org-level-6 ((t (,@headline ,@sd/variable-font-tuple))))
363                               `(org-level-5 ((t (,@headline ,@sd/variable-font-tuple))))
364                               `(org-level-4 ((t (,@headline ,@sd/variable-font-tuple
365                                                             :height ,(round (* 1.1 base-height))))))
366                               `(org-level-3 ((t (,@headline ,@sd/variable-font-tuple
367                                                             :height ,(round (* 1.25 base-height))))))
368                               `(org-level-2 ((t (,@headline ,@sd/variable-font-tuple
369                                                             :height ,(round (* 1.5 base-height))))))
370                               `(org-level-1 ((t (,@headline ,@sd/variable-font-tuple
371                                                             :height ,(round (* 1.75 base-height))))))
372                               `(org-document-title ((t (,@headline ,@sd/variable-font-tuple :height 1.5 :underline nil)))))))
373
374
375 #+END_SRC
376
377 ** Rainbow-delimiter
378
379 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
380
381   (use-package rainbow-delimiters
382     :ensure t
383     :init
384     (add-hook 'prog-mode-hook #'rainbow-delimiters-mode))
385
386 #+END_SRC
387
388 ** page-break-lines
389 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
390   (use-package page-break-lines
391     :ensure t
392     :config
393     (global-page-break-lines-mode)
394     ;; (turn-on-page-break-lines-mode)
395     )
396 #+END_SRC
397
398 ** rainbow-mode
399
400 Enable rainbow mode in emacs lisp mode
401
402 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
403   (use-package rainbow-mode
404     :ensure t
405   ;  :init
406   ;  (add-hook emacs-lisp-mode-hook 'rainbow-mode)
407     )
408
409 #+END_SRC
410
411 ** cusor color
412 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
413   (set-cursor-color 'red)
414 #+END_SRC
415
416 * Mode-line
417 ** clean mode line
418 clean mode line, Refer to [[https://www.masteringemacs.org/article/hiding-replacing-modeline-strings][Marstering Emacs]], some greek character see [[http://xahlee.info/math/math_unicode_greek.html][math_unicode_greek]]
419 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
420   (defvar mode-line-cleaner-alist
421     `((auto-complete-mode . " α")
422       (paredit-mode . " π")
423       (eldoc-mode . "")
424       (abbrev-mode . "")
425       (projectile-mode . "")
426       (ivy-mode . "")
427       (undo-tree-mode . "")
428       ;; default is WK
429       (which-key-mode . "")
430       ;; default is SP
431       (smartparens-mode . "")
432       ;; default is LR
433       (linum-relative-mode . "")
434       ;; default is ARev
435       (auto-revert-mode . "")
436       ;; default is Ind
437       (org-indent-mode . "")
438       ;; default is  Fly
439       (flyspell-mode . "")
440       (irony-mode . "")
441       (page-break-lines-mode . "")
442       (yas-minor-mode . "y")
443       ;; Major modes
444       (lisp-interaction-mode . "λ")
445       (hi-lock-mode . "")
446       (python-mode . "Py")
447       (emacs-lisp-mode . "EL")
448       (eshell-mode . "𝞔")
449       (dired-mode . "𝞓")
450       (ibuffer-mode . "𝞑")
451       (org-mode . "𝞞")
452       (nxhtml-mode . "nx"))
453     "Alist for `clean-mode-line'.
454
455   When you add a new element to the alist, keep in mind that you
456   must pass the correct minor/major mode symbol and a string you
457   want to use in the modeline *in lieu of* the original.")
458
459
460   (defun clean-mode-line ()
461     (interactive)
462     (loop for cleaner in mode-line-cleaner-alist
463           do (let* ((mode (car cleaner))
464                    (mode-str (cdr cleaner))
465                    (old-mode-str (cdr (assq mode minor-mode-alist))))
466                (when old-mode-str
467                    (setcar old-mode-str mode-str))
468                  ;; major mode
469                (when (eq mode major-mode)
470                  (setq mode-name mode-str)))))
471
472
473   (add-hook 'after-change-major-mode-hook 'clean-mode-line)
474 #+END_SRC
475
476 ** Powerline mode
477 Install powerline mode [[https://github.com/milkypostman/powerline][powerline]]
478 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
479   (use-package powerline
480     :ensure t
481     :config
482     ;; (powerline-center-theme)
483     )
484
485   ;; (use-package smart-mode-line
486   ;;   :ensure t)
487   ;; (use-package smart-mode-line-powerline-theme
488   ;;   :ensure t)
489 #+END_SRC
490
491 Revised powerline-center-theme
492 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
493   (defun sd/powerline-simpler-vc (s)
494     (if s
495         (replace-regexp-in-string "Git[:-]" "" s)
496       s))
497
498   (defface sd/powerline-active1 '((t (:background "yellow" :foreground "black" :inherit mode-line)))
499     "My Powerline face 1 based on powerline-active1."
500     :group 'powerline)
501
502   (defface sd/buffer-modified-active1 '((t (:background "red" :foreground "black" :inherit mode-line)))
503     "My Powerline face 1 based on powerline-active1."
504     :group 'powerline)
505
506   (defface sd/buffer-view-active1 '((t (:background "green" :foreground "black" :inherit mode-line)))
507     "My Powerline face 1 based on powerline-active1."
508     :group 'powerline)
509
510   (defface sd/mode-line-buffer-id
511     '((t (:background "yellow" :foreground "black" :inherit mode-line-buffer-id)))
512     "My powerline mode-line face, based on mode-line-buffer-id"
513     :group 'powerline)
514
515   ;; Don't show buffer modified for scratch and eshell mode
516   (defun sd/buffer-is-eshel-or-scratch ()
517     "Dot not show modified indicator for buffers"
518     (interactive)
519     (unless (or (string-match "*scratch*" (buffer-name))
520                 (equal major-mode 'eshell-mode))
521       t))
522
523   (defun sd/powerline-center-theme_revised ()
524     "Setup a mode-line with major and minor modes centered."
525     (interactive)
526     (setq-default mode-line-format
527                   '("%e"
528                     (:eval
529                      (let* ((active (powerline-selected-window-active))
530                             (mode-line-buffer-id (if active 'sd/mode-line-buffer-id 'mode-line-buffer-id-inactive))
531                             (mode-line (if active 'mode-line 'mode-line-inactive))
532                             (my-face1 (if active 'sd/powerline-active1 'powerline-inactive1))
533                             (my-face-buffer-modified (if (and (sd/buffer-is-eshel-or-scratch) (buffer-modified-p) (not buffer-read-only)) 
534                                                          'sd/buffer-modified-active1
535                                                        (if buffer-read-only 'sd/buffer-view-active1
536                                                          my-face1)))
537                             (face1 (if active 'powerline-active1 'powerline-inactive1))
538                             (face2 (if active 'powerline-active2 'powerline-inactive2))
539                             (separator-left (intern (format "powerline-%s-%s"
540                                                             (powerline-current-separator)
541                                                             (car powerline-default-separator-dir))))
542                             (separator-right (intern (format "powerline-%s-%s"
543                                                              (powerline-current-separator)
544                                                              (cdr powerline-default-separator-dir))))
545                             (lhs (list (powerline-raw "%* " my-face-buffer-modified 'l)
546                                        ;; (powerline-buffer-size mode-line 'l)
547                                        (powerline-buffer-id mode-line-buffer-id 'l)
548                                        (powerline-raw " " my-face1)
549                                        (funcall separator-left my-face1 face1)
550                                        (powerline-narrow face1 'l)
551                                        ;; (powerline-vc face1)
552                                        (sd/powerline-simpler-vc (powerline-vc face1))))
553                             (rhs (list (powerline-raw global-mode-string face1 'r)
554                                        (powerline-raw "%4l" face1 'r)
555                                        (powerline-raw ":" face1)     
556                                        (powerline-raw "%3c" face1 'r)
557                                        (funcall separator-right face1 my-face1)
558                                        ;; (powerline-raw " " my-face1)
559                                        (powerline-raw (format-time-string " %I:%M %p  ") my-face1 'r)
560                                        ;; (powerline-raw "%6p" my-face1 'r)
561                                        ;; (powerline-hud my-face1 face1 )
562                                        ))
563                             (center (list (powerline-raw " " face1)
564                                           (funcall separator-left face1 face2)
565                                           (when (and (boundp 'erc-track-minor-mode) erc-track-minor-mode)
566                                             (powerline-raw erc-modified-channels-object face2 'l))
567                                           (powerline-major-mode face2 'l)
568                                           (powerline-process face2)
569                                           (powerline-raw " :" face2)
570                                           (powerline-minor-modes face2 'l)
571                                           (powerline-raw " " face2)
572                                           (funcall separator-right face2 face1))))
573                        (concat (powerline-render lhs)
574                                (powerline-fill-center face1 (/ (powerline-width center) 2.0))
575                                (powerline-render center)
576                                (powerline-fill face1 (powerline-width rhs))
577                                (powerline-render rhs)))))))
578
579   (sd/powerline-center-theme_revised)
580 #+END_SRC
581
582 Fix the issue in mode line when showing triangle 
583 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
584   (setq ns-use-srgb-colorspace nil)
585 #+END_SRC
586
587 set height in mode line
588 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
589   (set-variable 'powerline-height 14)
590   (set-variable 'powerline-text-scale-factor (/ (float 100) 140))
591   ;; (custom-set-variables
592   ;;  '(powerline-height 14)
593   ;;  '(powerline-text-scale-factor (/ (float 100) 140)))
594   ;; 100/140;0.8
595   (set-face-attribute 'mode-line nil :height 100)
596 #+END_SRC
597
598 * IDO & SMEX
599 ** IDO
600 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
601   (use-package ido
602     :ensure t
603     :init (setq ido-enable-flex-matching nil
604                 ido-ignore-extensions t
605                 ido-use-virtual-buffers t
606                 ido-everywhere t)
607     (setq ido-save-directory-list-file (concat sd-temp-directory "ido.last"))
608     :config
609     (ido-mode 1)
610     (ido-everywhere 1)
611     (add-to-list 'completion-ignored-extensions ".pyc"))
612
613   (icomplete-mode t)
614 #+END_SRC
615
616 ** FLX
617 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
618   (use-package flx-ido
619     :ensure t
620     :init (setq ido-enable-flex-matching nil
621                 ido-use-faces nil)
622     :config (flx-ido-mode nil))
623 #+END_SRC
624
625 ** IDO-vertically
626 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
627   (use-package ido-vertical-mode
628     :ensure t
629     :init
630     (setq ido-vertical-define-keys 'C-n-C-p-up-and-down)
631     :config
632     (ido-vertical-mode 1))
633 #+END_SRC
634
635 ** SMEX
636 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
637   (use-package smex
638     :ensure t
639     :init
640     (setq smex-save-file (concat sd-temp-directory "smex-items"))
641     (smex-initialize)
642     :bind
643     ("M-x" . smex)
644     ("M-X" . smex-major-mode-commands))
645 #+END_SRC
646
647 ** Ido-ubiquitous
648 Use [[https://github.com/DarwinAwardWinner/ido-ubiquitous][ido-ubiquitous]] for ido everywhere. It makes =describe-function= can also use ido
649 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
650   (use-package ido-ubiquitous
651     :ensure t
652     :init
653     (setq magit-completing-read-function 'magit-ido-completing-read)
654     (setq gnus-completing-read-function 'gnus-ido-completing-read)
655     :config
656     (ido-ubiquitous-mode 1))
657 #+END_SRC
658
659 ** Ido-exit-target
660 [[https://github.com/waymondo/ido-exit-target][ido-exit-target]] let you open file/buffer on =other-windows= when call =ido-switch-buffer=
661 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
662   (use-package ido-exit-target
663     :ensure t
664     :init
665     (mapcar #'(lambda (map)
666               (define-key map (kbd "C-j") #'ido-exit-target-other-window)
667               (define-key map (kbd "C-k") #'ido-exit-target-split-window-below))
668             (list ido-buffer-completion-map
669                   ;; ido-common-completion-map
670                   ido-file-completion-map
671                   ido-file-dir-completion-map)))
672 #+END_SRC
673
674 ** Counsel
675 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
676   (use-package counsel
677     :ensure t
678     :defer t
679     :init
680     (global-set-key (kbd "M-x") 'counsel-M-x)
681     (global-set-key (kbd "C-h f") 'counsel-describe-function)
682     (global-set-key (kbd "C-h v") 'counsel-describe-variable)
683     ;; (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
684     (define-key read-expression-map (kbd "C-r") 'counsel-expression-history)
685     (global-set-key (kbd "C-c C-r") 'ivy-resume))
686
687
688
689   ;; (global-set-key "\C-s" 'swiper)
690   ;; (global-set-key (kbd "<f6>") 'ivy-resume)
691   ;; ;; (global-set-key (kbd "C-x C-f") 'counsel-find-file)
692   ;; (global-set-key (kbd "<f1> l") 'counsel-load-library)
693   ;; (global-set-key (kbd "<f2> i") 'counsel-info-lookup-symbol)
694   ;; (global-set-key (kbd "<f2> u") 'counsel-unicode-char)
695   ;; (global-set-key (kbd "C-c g") 'counsel-git)
696   ;; (global-set-key (kbd "C-c j") 'counsel-git-grep)
697   ;; (global-set-key (kbd "C-c k") 'counsel-ag)
698   ;; (global-set-key (kbd "C-x l") 'counsel-locate)
699   ;; (global-set-key (kbd "C-S-o") 'counsel-rhythmbox)
700
701   ;; (set-face-attribute
702   ;;  'ivy-current-match nil
703   ;;  :background "Orange"
704   ;;  :foreground "black")
705
706   ;; ivy-resume
707   ;; (define-key swiper-map (kbd "M-%") 'swiper-aa-replace)
708 #+END_SRC
709
710 ** helm
711 let helm windows split inside current window
712 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
713   (with-eval-after-load 'helm
714     (setq helm-split-window-in-side-p t))
715 #+END_SRC
716
717 * Org-mode Settings
718 ** Org-mode Basic setting
719 Always indents header, and hide header leading starts so that no need type =#+STATUP: indent= 
720 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
721   (use-package org
722     :ensure t
723     :init
724     (setq org-startup-indented t)
725     (setq org-hide-leading-starts t)
726     (setq org-src-fontify-natively t)
727     (setq org-src-tab-acts-natively t)
728     (setq org-confirm-babel-evaluate nil)
729     (setq org-use-speed-commands t)
730     (setq org-completion-use-ido t)
731     (setq org-startup-with-inline-images t)
732     ;; latex preview
733     (setq org-startup-with-latex-preview t)
734     (setq org-format-latex-options (plist-put org-format-latex-options :scale 1.2))
735     (require 'org-habit)
736     (add-to-list 'org-modules 'org-habit)
737     (setq org-habit-graph-column 50)
738     (setq org-hide-emphasis-markers t))
739
740   (el-get-bundle hasu/emacs-ob-racket
741     :features ob-racket)
742
743   (org-babel-do-load-languages 'org-babel-load-languages
744                                '((python . t)
745                                  (C . t)
746                                  (perl . t)
747                                  (calc . t)
748                                  (latex . t)
749                                  (java . t)
750                                  (ruby . t)
751                                  (lua . t)
752                                  (lisp . t)
753                                  (scheme . t)
754                                  (racket . t)
755                                  (sh . t)
756                                  (sqlite . t)
757                                  (js . t)
758                                  (gnuplot . t)
759                                  (ditaa . t)))
760
761   ;; use current window for org source buffer editting
762   (setq org-src-window-setup 'current-window )
763
764   (define-key org-mode-map (kbd "C-'") nil)
765   ;; C-M-i is mapped to imenu globally
766   (define-key org-mode-map (kbd "C-M-i") nil)
767
768   ;; set the ditta.jar path
769   (setq org-ditaa-jar-path "/usr/local/Cellar/ditaa/0.9/libexec/ditaa0_9.jar")
770   (unless 
771       (file-exists-p org-ditaa-jar-path)
772     (error "seudut: ditaa.jar not found at %s " org-ditaa-jar-path))
773
774   ;; Lua support
775   (use-package ob-lua
776     :ensure t)
777 #+END_SRC
778
779 ** Org-bullets
780 use [[https://github.com/sabof/org-bullets][org-bullets]] package to show utf-8 charactes
781 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
782   (use-package org-bullets
783     :ensure t
784     :init
785     (add-hook 'org-mode-hook
786               (lambda ()
787                 (org-bullets-mode t))))
788
789   (setq org-bullets-bullet-list '("⦿" "✪" "◉" "○" "►" "◆"))
790
791   ;; increase font size when enter org-src-mode
792   (add-hook 'org-src-mode-hook (lambda () (text-scale-increase 2)))
793 #+END_SRC
794
795 ** Worf Mode
796 [[https://github.com/abo-abo/worf][worf]] mode is an extension of vi-like binding for org-mode. 
797 In =worf-mode=, it is mapping =[=, =]= as =worf-backward= and =worf-forward= in global, wich
798 cause we cannot input =[= and =]=, so here I unset this mappings. And redifined this two to
799 =M-[= and =M-]=. see this [[https://github.com/abo-abo/worf/issues/19#issuecomment-223756599][issue]]
800 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
801   (use-package worf
802     :ensure t
803     :commands worf-mode
804     :init (add-hook 'org-mode-hook 'worf-mode))
805 #+END_SRC
806
807 ** Get Things Done
808 Refer to [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
809 *** basic setup
810 standard key binding
811 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
812   (global-set-key "\C-cl" 'org-store-link)
813   (global-set-key "\C-ca" 'org-agenda)
814   (global-set-key "\C-cb" 'org-iswitchb)
815 #+END_SRC
816
817 *** Plain List 
818 Replace the list bullet =-=, =+=,  with =•=, a litter change based [[https://github.com/howardabrams/dot-files/blob/master/emacs-org.org][here]]
819 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
820   ;; (use-package org-mode
821   ;;   :init
822   ;;   (font-lock-add-keywords 'org-mode
823   ;;    '(("^ *\\([-+]\\) "
824   ;;           (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•")))))))
825 #+END_SRC
826  
827 *** Todo Keywords
828 refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][fancy todo states]], 
829 To track TODO state changes, the =!= is to insert a timetamp, =@= is to insert a note with
830 timestamp for the state change.
831 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
832     ;; (setq org-todo-keywords
833     ;;        '((sequence "☛ TODO(t)" "|" "✔ DONE(d)")
834     ;;          (sequence "⚑ WAITING(w)" "|")
835     ;;          (sequence "|" "✘ CANCELLED(c)")))
836   ; (setq org-todo-keyword-faces
837   ;        (quote ("TODO" .  (:foreground "red" :weight bold))
838   ;               ("NEXT" .  (:foreground "blue" :weight bold))
839   ;               ("WAITING" . (:foreground "forest green" :weight bold))
840   ;               ("DONE" .  (:foreground "magenta" :weight bold))
841   ;               ("CANCELLED" . (:foreground "forest green" :weight bold))))
842
843
844   (setq org-todo-keywords
845         (quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!)")
846                 ;; (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING")
847                 (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" ))))
848
849   (setq org-todo-keyword-faces
850         (quote (("TODO" :foreground "red" :weight bold)
851                 ("NEXT" :foreground "blue" :weight bold)
852                 ("DONE" :foreground "forest green" :weight bold)
853                 ("WAITING" :foreground "orange" :weight bold)
854                 ("HOLD" :foreground "magenta" :weight bold)
855                 ("CANCELLED" :foreground "forest green" :weight bold)
856                 ;; ("MEETING" :foreground "forest green" :weight bold)
857                 ;; ("PHONE" :foreground "forest green" :weight bold)
858                 )))
859 #+END_SRC
860
861 Fast todo selections
862
863 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
864   (setq org-use-fast-todo-selection t)
865   (setq org-treat-S-cursor-todo-selection-as-state-change nil)
866 #+END_SRC
867
868 TODO state triggers and tags, [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
869
870 - Moving a task to =CANCELLED=, adds a =CANCELLED= tag
871 - Moving a task to =WAITING=, adds a =WAITING= tag
872 - Moving a task to =HOLD=, add =HOLD= tags
873 - Moving a task to =DONE=, remove =WAITING=, =HOLD= tag
874 - Moving a task to =NEXT=, remove all waiting/hold/cancelled tags
875
876 This tags are used to filter tasks in agenda views
877 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
878   (setq org-todo-state-tags-triggers
879         (quote (("CANCELLED" ("CANCELLED" . t))
880                 ("WAITING" ("WAITING" . t))
881                 ("HOLD" ("WAITING") ("HOLD" . t))
882                 (done ("WAITING") ("HOLD"))
883                 ("TODO" ("WAITING") ("CANCELLED") ("HOLD"))
884                 ("NEXT" ("WAITING") ("CANCELLED") ("HOLD"))
885                 ("DONE" ("WAITING") ("CANCELLED") ("HOLD")))))
886 #+END_SRC
887
888 Logging Stuff 
889 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
890   ;; log time when task done
891   ;; (setq org-log-done (quote time))
892   ;; save clocking into to LOGBOOK
893   (setq org-clock-into-drawer t)
894   ;; save state change notes and time stamp into LOGBOOK drawer
895   (setq org-log-into-drawer t)
896   (setq org-clock-into-drawer "CLOCK")
897 #+END_SRC
898
899 *** Tags
900 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
901   (setq org-tag-alist (quote ((:startgroup)
902                               ("@office" . ?e)
903                               ("@home" . ?h)
904                               (:endgroup)
905                               ("WAITING" . ?w)
906                               ("HOLD" . ?h)
907                               ("CANCELLED" . ?c))))
908
909   ;; Allow setting single tags without the menu
910   (setq org-fast-tag-selection-single-key (quote expert))
911 #+END_SRC
912
913 *** Capture - Refile - Archive
914
915 Capture lets you quickly store notes with little interruption of your work flow.
916
917 **** Capture Templates
918
919 When a new taks needs to be added, categorize it as 
920
921 All captured file which need next actions are stored in =refile.org=, 
922 - A new task / note (t) =refile.org=
923 - A work task in office =office.org=
924 - A jourenl =diary.org=
925 - A new habit (h) =refile.org=
926
927 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
928   (setq org-directory "~/org")
929   (setq org-default-notes-file "~/org/refile.org")
930   (setq sd/org-diary-file "~/org/diary.org")
931
932   (global-set-key (kbd "C-c c") 'org-capture)
933
934   (setq org-capture-templates
935         (quote (("t" "Todo" entry (file org-default-notes-file)
936                  "* TODO %?\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
937                 ("n" "Note" entry (file org-default-notes-file)
938                  "* %? :NOTE:\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
939                 ("j" "Journal" entry (file+datetree sd/org-diary-file)
940                  "* %?\n:LOGBOOK:\n:END:" :clock-in t :clock-resume t)
941                 ("h" "Habit" entry (file org-default-notes-file)
942                  "* NEXT %?\n:LOGBOOK:\n%a\nSCHEDULED: %(format-time-string \"%<<%Y-%m-%d %a .+1d/3d>>\")\n:END:\n:PROPERTIES:\n:STYLE: habit\n:REPEAT_TO_STATE: NEXT\n:END:\n "))))
943 #+END_SRC
944
945 **** Refiling Tasks
946
947 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
948   (setq org-refile-targets (quote (;; (nil :maxlevel . 9)
949                                    (org-agenda-files :maxlevel . 9))))
950
951   (setq org-refile-use-outline-path t)
952
953   (setq org-refile-allow-creating-parent-nodes (quote confirm))
954 #+END_SRC
955
956 *** Agenda Setup
957 Setting agenda files and the agenda view
958 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
959   (setq org-agenda-files (quote ("~/org/gtd.org"
960                                  "~/org/work.org")))
961
962   ;; only show today's tasks in agenda view
963   ;; (setq org-agenda-span 'day)
964   ;; Use current windows for agenda view
965   ;; (setq org-agenda-window-setup 'current-window)
966
967   ;; show all feature entries for repeating tasks,
968   ;; this is already setting by default
969   (setq org-agenda-repeating-timestamp-show-all t)
970
971   ;; Show all agenda dates - even if they are empty
972   (setq org-agenda-show-all-dates t)
973 #+END_SRC
974
975 ** Export PDF
976 Install MacTex-basic [[http://www.tug.org/mactex/morepackages.html][MacTex-basic]]  and some tex packages
977 #+BEGIN_SRC sh 
978   wget http://tug.org/cgi-bin/mactex-download/BasicTeX.pkg
979
980   sudo tlmgr update --self
981
982   sudo tlmgr install titlesec framed threeparttable wrapfig multirow enumitem bbding titling tabu mdframed tcolorbox textpos import varwidth needspace tocloft ntheorem environ trimspaces collection-fontsrecommended capt-of
983 #+END_SRC
984
985 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
986   ;; ;; allow for export=>beamer by placing
987
988   ;; http://emacs-fu.blogspot.com/2011/04/nice-looking-pdfs-with-org-mode-and.html
989   ;; #+LaTeX_CLASS: beamer in org files
990   (unless (boundp 'org-export-latex-classes)
991     (setq org-export-latex-classes nil))
992   (add-to-list 'org-export-latex-classes
993     ;; beamer class, for presentations
994     '("beamer"
995        "\\documentclass[11pt]{beamer}\n
996         \\mode<{{{beamermode}}}>\n
997         \\usetheme{{{{beamertheme}}}}\n
998         \\usecolortheme{{{{beamercolortheme}}}}\n
999         \\beamertemplateballitem\n
1000         \\setbeameroption{show notes}
1001         \\usepackage[utf8]{inputenc}\n
1002         \\usepackage[T1]{fontenc}\n
1003         \\usepackage{hyperref}\n
1004         \\usepackage{color}
1005         \\usepackage{listings}
1006         \\lstset{numbers=none,language=[ISO]C++,tabsize=4,
1007     frame=single,
1008     basicstyle=\\small,
1009     showspaces=false,showstringspaces=false,
1010     showtabs=false,
1011     keywordstyle=\\color{blue}\\bfseries,
1012     commentstyle=\\color{red},
1013     }\n
1014         \\usepackage{verbatim}\n
1015         \\institute{{{{beamerinstitute}}}}\n          
1016          \\subject{{{{beamersubject}}}}\n"
1017
1018        ("\\section{%s}" . "\\section*{%s}")
1019  
1020        ("\\begin{frame}[fragile]\\frametitle{%s}"
1021          "\\end{frame}"
1022          "\\begin{frame}[fragile]\\frametitle{%s}"
1023          "\\end{frame}")))
1024
1025     ;; letter class, for formal letters
1026
1027     (add-to-list 'org-export-latex-classes
1028
1029     '("letter"
1030        "\\documentclass[11pt]{letter}\n
1031         \\usepackage[utf8]{inputenc}\n
1032         \\usepackage[T1]{fontenc}\n
1033         \\usepackage{color}"
1034  
1035        ("\\section{%s}" . "\\section*{%s}")
1036        ("\\subsection{%s}" . "\\subsection*{%s}")
1037        ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
1038        ("\\paragraph{%s}" . "\\paragraph*{%s}")
1039        ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
1040
1041
1042   (require 'ox-md)
1043   (require 'ox-beamer)
1044
1045   (setq org-latex-pdf-process
1046         '("pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1047           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1048           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"))
1049
1050   (setq TeX-parse-self t)
1051
1052   (setq TeX-PDF-mode t)
1053   (add-hook 'LaTeX-mode-hook
1054             (lambda ()
1055               (LaTeX-math-mode)
1056               (setq TeX-master t)))
1057
1058 #+END_SRC
1059
1060 ** Export Html
1061 Color higlight the source code block in exported html, [[http://stackoverflow.com/questions/24082430/org-mode-no-syntax-highlighting-in-exported-html-page][org-mode-no-syntax-highlighting-in-exported-html-page]]
1062 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1063   (use-package htmlize
1064     :ensure t)
1065 #+END_SRC
1066
1067 ** Org structure template
1068 extend org-mode's easy templates, refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][Extend org-modes' esay templates]]
1069 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1070   (add-to-list 'org-structure-template-alist
1071                '("E" "#+BEGIN_SRC emacs-lisp :tangle yes :results silent\n?\n#+END_SRC"))
1072   (add-to-list 'org-structure-template-alist
1073                '("R" "#+BEGIN_SRC racket :tangle no :results output replace\n?\n#+END_SRC"))
1074   (add-to-list 'org-structure-template-alist
1075                '("S" "#+BEGIN_SRC sh :results output replace\n?\n#+END_SRC"))
1076   (add-to-list 'org-structure-template-alist
1077                '("p" "#+BEGIN_SRC plantuml :file uml.png \n?\n#+END_SRC"))
1078   (add-to-list 'org-structure-template-alist
1079                '("P" "#+BEGIN_SRC perl \n?\n#+END_SRC"))
1080   (add-to-list 'org-structure-template-alist
1081                '("f" "#+BEGIN_SRC fundamental :tangle ?\n\n#+END_SRC"))
1082   (add-to-list 'org-structure-template-alist
1083                '("C" "#+BEGIN_SRC c :tangle ?\n\n#+END_SRC"))
1084   (add-to-list 'org-structure-template-alist
1085                '("m" "\\begin{equation}\n?\n\\end{equation}"))
1086 #+END_SRC
1087
1088 * Magit
1089 [[https://github.com/magit/magit][Magit]] is a very cool git interface on Emacs.
1090 and Defined keys, using vi keybindings, Refer abo-abo's setting [[https://github.com/abo-abo/oremacs/blob/c5cafdcebc88afe9e73cc8bd40c49b70675509c7/modes/ora-nextmagit.el][here]]
1091 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1092   (use-package magit
1093     :ensure t
1094     :init
1095     ;; don't ask me to confirm the unsaved change 
1096     (setq magit-save-repository-buffers nil)
1097     ;; default is 50
1098     (setq git-commit-summary-max-length 80)
1099     :commands magit-status magit-blame
1100     :config
1101     (dolist (map (list magit-status-mode-map
1102                        magit-log-mode-map
1103                        magit-diff-mode-map
1104                        magit-staged-section-map))
1105       (define-key map "j" 'magit-section-forward)
1106       (define-key map "k" 'magit-section-backward)
1107       (define-key map "D" 'magit-discard)
1108       (define-key map "O" 'magit-discard-file)
1109       (define-key map "n" nil)
1110       (define-key map "p" nil)
1111       (define-key map "v" 'recenter-top-bottom)
1112       (define-key map "i" 'magit-section-toggle)))
1113 #+END_SRC
1114
1115 * Eshell
1116 ** Eshell alias
1117 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1118   (defalias 'e 'find-file)
1119   (defalias 'ff 'find-file)
1120   (defalias 'ee 'find-files)
1121 #+END_SRC
1122
1123 ** eshell temp directory
1124 set default eshell history folder
1125 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1126   (setq eshell-directory-name (concat  sd-temp-directory "eshell"))
1127 #+END_SRC
1128
1129 ** Eshell erase buffer
1130 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1131   (defun sd/eshell-clear-buffer ()
1132     "Clear eshell buffer"
1133     (interactive)
1134     (let ((inhibit-read-only t))
1135       (erase-buffer)
1136       (eshell-send-input)))
1137
1138    (add-hook 'eshell-mode-hook (lambda ()
1139                                 (local-set-key (kbd "C-l") 'sd/eshell-clear-buffer)))
1140 #+END_SRC
1141
1142 ** Toggle Eshell
1143 Toggle an eshell in split window below, refer [[http://www.howardism.org/Technical/Emacs/eshell-fun.html][eshell-here]]
1144 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1145   (defun sd/window-has-eshell ()
1146     "Check if current windows list has a eshell buffer, and return the window"
1147     (interactive)
1148     (let ((ret nil))
1149       (walk-windows (lambda (window)
1150                       (if (equal (with-current-buffer (window-buffer window) major-mode)
1151                                  'eshell-mode)
1152                           (setq ret window)))
1153                     nil nil)
1154       ret))
1155
1156   (defun sd/toggle-project-eshell ()
1157     "Toggle a eshell buffer vertically"
1158     (interactive)
1159     (if (sd/window-has-eshell)
1160         (if (equal major-mode 'eshell-mode)
1161             (progn
1162               (if (equal (length (window-list)) 1)
1163                   (mode-line-other-buffer)
1164                 (delete-window)))
1165           (select-window (sd/window-has-eshell)))
1166       (progn
1167         (split-window-vertically (- (/ (window-total-height) 3)))
1168         (other-window 1)
1169         (if (projectile-project-p)
1170             (projectile-run-eshell)
1171           (eshell)))))
1172
1173   (global-set-key (kbd "s-e") 'sd/toggle-project-eshell)
1174 #+END_SRC
1175
1176 ** exec-path-from-shell
1177 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1178   (use-package exec-path-from-shell
1179     :ensure t
1180     :init
1181     (setq exec-path-from-shell-check-startup-files nil)
1182     :config
1183     (exec-path-from-shell-initialize))
1184 #+END_SRC
1185
1186 * Misc Settings
1187 ** [[https://github.com/abo-abo/hydra][Hydra]]
1188 *** hydra install
1189 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1190   (use-package hydra
1191     :ensure t)
1192   ;; disable new line in minibuffer when hint hydra
1193   (setq hydra-lv nil)
1194 #+END_SRC
1195
1196 *** Windmove Splitter
1197
1198 Refer [[https://github.com/abo-abo/hydra/blob/master/hydra-examples.el][hydra-example]], to enlarge or shrink the windows splitter
1199
1200 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1201
1202   (defun hydra-move-splitter-left (arg)
1203     "Move window splitter left."
1204     (interactive "p")
1205     (if (let ((windmove-wrap-around))
1206           (windmove-find-other-window 'right))
1207         (shrink-window-horizontally arg)
1208       (enlarge-window-horizontally arg)))
1209
1210   (defun hydra-move-splitter-right (arg)
1211     "Move window splitter right."
1212     (interactive "p")
1213     (if (let ((windmove-wrap-around))
1214           (windmove-find-other-window 'right))
1215         (enlarge-window-horizontally arg)
1216       (shrink-window-horizontally arg)))
1217
1218   (defun hydra-move-splitter-up (arg)
1219     "Move window splitter up."
1220     (interactive "p")
1221     (if (let ((windmove-wrap-around))
1222           (windmove-find-other-window 'up))
1223         (enlarge-window arg)
1224       (shrink-window arg)))
1225
1226   (defun hydra-move-splitter-down (arg)
1227     "Move window splitter down."
1228     (interactive "p")
1229     (if (let ((windmove-wrap-around))
1230           (windmove-find-other-window 'up))
1231         (shrink-window arg)
1232       (enlarge-window arg)))
1233
1234 #+END_SRC
1235
1236 *** hydra misc
1237 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1238   (defhydra sd/hydra-misc (:color red :columns nil)
1239     "Misc"
1240     ("e" eshell "eshell" :exit t)
1241     ("p" (lambda ()
1242            (interactive)
1243            (if (not (eq nil (get-buffer "*Packages*")))
1244                (switch-to-buffer "*Packages*")
1245              (package-list-packages)))
1246      "list-package" :exit t)
1247     ("g" magit-status "git-status" :exit t)
1248     ("'" mode-line-other-buffer "last buffer" :exit t)
1249     ("C-'" mode-line-other-buffer "last buffer" :exit t)
1250     ("m" man "man" :exit t)
1251     ("d" dired-jump "dired" :exit t)
1252     ("b" ibuffer "ibuffer" :exit t)
1253     ("q" nil "quit")
1254     ("f" nil "quit"))
1255
1256   (global-set-key (kbd "C-'") 'sd/hydra-misc/body)
1257 #+END_SRC
1258
1259 *** hydra launcher
1260 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1261   (defhydra sd/hydra-launcher (:color blue :columns 2)
1262     "Launch"
1263     ("e" emms "emms" :exit t)
1264     ("q" nil "cancel"))
1265 #+END_SRC
1266
1267 ** Line Number
1268 Enable linum mode on programming modes
1269 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1270   (add-hook 'prog-mode-hook 'linum-mode)
1271 #+END_SRC
1272
1273 Fix the font size of line number
1274 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1275   (defun fix-linum-size ()
1276     (interactive)
1277     (set-face-attribute 'linum nil :height 110))
1278
1279   (add-hook 'linum-mode-hook 'fix-linum-size)
1280 #+END_SRC
1281
1282 I like [[https://github.com/coldnew/linum-relative][linum-relative]], just like the =set relativenumber= on =vim=
1283 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1284   (use-package linum-relative
1285     :ensure t
1286     :init
1287     (setq linum-relative-current-symbol "")
1288     :config
1289     (defun linum-new-mode ()
1290       "If line numbers aren't displayed, then display them.
1291   Otherwise, toggle between absolute and relative numbers."
1292       (interactive)
1293       (if linum-mode
1294           (linum-relative-toggle)
1295         (linum-mode 1)))
1296
1297     :bind
1298     ("A-k" . linum-new-mode))
1299
1300   ;; auto enable linum-new-mode in programming modes
1301   (add-hook 'prog-mode-hook 'linum-relative-mode)
1302 #+END_SRC
1303
1304 ** Save File Position
1305 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1306   (require 'saveplace)
1307   (setq-default save-place t)
1308   (setq save-place-forget-unreadable-files t)
1309   (setq save-place-skip-check-regexp "\\`/\\(?:cdrom\\|floppy\\|mnt\\|/[0-9]\\|\\(?:[^@/:]*@\\)?[^@/:]*[^@/:.]:\\)")
1310 #+END_SRC
1311
1312 ** Multi-term
1313 define =multi-term= mapping to disable some mapping which is used globally.
1314 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1315   (use-package multi-term
1316     :ensure t)
1317
1318   (defun sd/term-mode-mapping ()
1319     (mapcar #'(lambda (map)
1320               (define-key map (kbd "C-o") nil)
1321               (define-key map (kbd "C-g") nil))
1322             (list term-mode-map
1323                   term-raw-map)))
1324
1325   (with-eval-after-load 'multi-term
1326     (sd/term-mode-mapping))
1327 #+END_SRC
1328
1329 ** ace-link
1330 [[https://github.com/abo-abo/ace-link][ace-link]] is a package written by [[https://github.com/abo-abo][Oleh Krehel]]. It is convenient to jump to link in help mode, info-mode, etc
1331 Type =o= to go to the link
1332 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1333   (use-package ace-link
1334     :ensure t
1335     :init
1336     (ace-link-setup-default))
1337 #+END_SRC
1338
1339 ** Smart Parens
1340 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1341   (use-package smartparens
1342     :ensure t
1343     :config
1344     (progn
1345       (require 'smartparens-config)
1346       (add-hook 'prog-mode-hook 'smartparens-mode)))
1347 #+END_SRC
1348
1349 ** Ace-Windows
1350 [[https://github.com/abo-abo/ace-window][ace-window]] 
1351 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1352   (use-package ace-window
1353     :ensure t
1354     :defer t
1355                                           ;  :init
1356                                           ;  (global-set-key (kbd "M-o") 'ace-window)
1357     :config
1358     (setq aw-keys '(?a ?s ?d ?f ?j ?k ?l)))
1359 #+END_SRC
1360
1361 ** Which key
1362 [[https://github.com/justbur/emacs-which-key][which-key]] show the key bindings 
1363 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1364   (use-package which-key
1365     :ensure t
1366     :config
1367     (which-key-mode))
1368 #+END_SRC
1369
1370 ** View only for some directory
1371 When see function by =C-h f=, and visit the source code, I would like the buffer is read only. See [[http://emacs.stackexchange.com/questions/3676/how-to-enter-view-only-mode-when-browsing-emacs-source-code-from-help/3681#3681][here]]
1372 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1373   (dir-locals-set-class-variables
1374    'emacs
1375    '((nil . ((buffer-read-only . t)
1376              (show-trailing-whitespace . nil)
1377              (tab-width . 8)
1378              (eval . (whitespace-mode -1))
1379              ;; (eval . (when buffer-file-name
1380              ;;           (setq-local view-no-disable-on-exit t)
1381              ;;           (view-mode-enter)))
1382              ))))
1383
1384   ;; (dir-locals-set-directory-class (expand-file-name "/usr/local/share/emacs") 'emacs)
1385   (dir-locals-set-directory-class "/usr/local/Cellar/emacs" 'emacs)
1386   ;; (dir-locals-set-directory-class "~/.emacs.d/elpa" 'emacs)
1387   (dir-locals-set-directory-class "~/dotfiles/emacs.d/elpa" 'emacs)
1388   (dir-locals-set-directory-class "~/dotfiles/emacs.d/el-get" 'emacs)
1389
1390   ;; temp-mode.el
1391   ;; Temporary minor mode
1392   ;; Main use is to enable it only in specific buffers to achieve the goal of
1393   ;; buffer-specific keymaps
1394
1395   ;; (defvar sd/temp-mode-map (make-sparse-keymap)
1396   ;;   "Keymap while temp-mode is active.")
1397
1398   ;; ;;;###autoload
1399   ;; (define-minor-mode sd/temp-mode
1400   ;;   "A temporary minor mode to be activated only specific to a buffer."
1401   ;;   nil
1402   ;;   :lighter " Temp"
1403   ;;   sd/temp-mode-map)
1404
1405   ;; (defun sd/temp-hook ()
1406   ;;   (if sd/temp-mode
1407   ;;       (progn
1408   ;;      (define-key sd/temp-mode-map (kbd "q") 'quit-window))))
1409
1410   ;; (add-hook 'lispy-mode-hook (lambda ()
1411   ;;                           (sd/temp-hook)))
1412 #+END_SRC
1413
1414 ** Info plus
1415 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1416   (el-get-bundle info+
1417     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/info+.el"
1418     ;; (require 'info+)
1419     )
1420
1421   (with-eval-after-load 'info
1422     (require 'info+))
1423 #+END_SRC
1424
1425 ** advice info
1426 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1427   (defun sd/info-mode ()
1428     (interactive)
1429     (unless (equal major-mode 'Info-mode)
1430       (unless (> (length (window-list)) 1)
1431         (split-window-right))
1432       (other-window 1)))
1433
1434   ;; open Info buffer in other window instead of current window
1435   (defadvice info (before my-info (&optional file buf) activate)
1436     (sd/info-mode))
1437
1438   (defadvice Info-exit (after my-info-exit activate)
1439     (sd/delete-current-window))
1440 #+END_SRC
1441
1442 ** Demo It
1443 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1444   (use-package org-tree-slide
1445     :ensure t)
1446 #+END_SRC
1447
1448 ** Presentation
1449 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1450   (use-package org-tree-slide
1451     :ensure
1452     :config
1453     ;; (define-key org-mode-map "\C-ccp" 'org-tree-slide-mode)
1454     (define-key org-tree-slide-mode-map (kbd "<ESC>") 'org-tree-slide-content)
1455     (define-key org-tree-slide-mode-map (kbd "<SPACE>") 'org-tree-slide-move-next-tree)
1456     (define-key org-tree-slide-mode-map [escape] 'org-tree-slide-move-previous-tree))
1457 #+END_SRC
1458
1459 ** pdf-tools
1460 #+BEGIN_SRC sh
1461   brew install poppler
1462 #+END_SRC
1463
1464 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1465   (use-package pdf-tools
1466     :ensure t
1467     :init
1468     ;; run to complete the installation
1469     (pdf-tools-install)
1470     :config
1471     (add-to-list 'auto-mode-alist '("\.pdf$" . pdf-view-mode))
1472     (add-hook 'pdf-outline-buffer-mode-hook #'sd/pdf-outline-map))
1473
1474   (defun sd/pdf-outline-map ()
1475     "My keybindings in pdf-outline-map"
1476     (interactive)
1477     (define-key pdf-outline-buffer-mode-map (kbd "C-o") nil)
1478     (define-key pdf-outline-buffer-mode-map (kbd "i") 'outline-toggle-children)
1479     (define-key pdf-outline-buffer-mode-map (kbd "j") 'next-line)
1480     (define-key pdf-outline-buffer-mode-map (kbd "k") 'previous-line))
1481 #+END_SRC
1482
1483 ** help-mode
1484 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1485   (defun sd/help-mode-hook ()
1486     "Mapping for help mode"
1487     (define-key help-mode-map "j" 'next-line)
1488     (define-key help-mode-map "k" 'previous-line)
1489     (define-key help-mode-map "h" 'forward-char)
1490     (define-key help-mode-map "l" 'forward-char)
1491     (define-key help-mode-map "H" 'describe-mode)
1492     (define-key help-mode-map "v" 'recenter-top-bottom)
1493     (define-key help-mode-map "i" 'forward-button)
1494     (define-key help-mode-map "I" 'backward-button)
1495     (define-key help-mode-map "o" 'ace-link-help))
1496
1497   (add-hook 'help-mode-hook 'sd/help-mode-hook)
1498 #+END_SRC
1499
1500 ** goto-last-change
1501 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1502   (use-package goto-last-change
1503     :ensure t)
1504 #+END_SRC
1505
1506 ** Ag
1507 install =ag=, =the-silver-searcher= by homebrew on mac
1508 #+BEGIN_SRC sh
1509 brew install the-silver-searcher
1510 #+END_SRC
1511
1512 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1513   (use-package ag
1514     :ensure t)
1515 #+END_SRC
1516
1517 ** Local Variable hooks
1518 [[https://www.emacswiki.org/emacs/LocalVariables][LocalVariables]], use =hack-local-variables-hook=, run a hook to set local variable in mode hook
1519 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1520   ;; make Emacs run a new "local variables hook" for each major mode
1521   (add-hook 'hack-local-variables-hook 'run-local-vars-mode-hook)
1522
1523   (defun run-local-vars-mode-hook ()
1524     "Run a hook for the major-mode after the local variables have been processed."
1525     (run-hooks (intern (concat (symbol-name major-mode) "-local-vars-hook"))))
1526
1527   ;;   (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
1528 #+END_SRC
1529
1530 ** Table
1531 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1532   (add-hook 'text-mode-hook 'table-recognize)
1533 #+END_SRC
1534
1535 ** url-download
1536 To download file in =elisp=, best is =url-copy-file=, here refer [[http://stackoverflow.com/questions/4448055/download-a-file-with-emacs-lisp][download-a-file-with-emacs-lisp]] using =url-retrieve-synchronously= wrapping
1537 as a http download client tool
1538 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1539   (defun sd/download-file (&optional url download-dir download-name)
1540     (interactive)
1541     (let ((url (or url
1542                    (read-string "Enter download URL: ")))
1543           (download-dir (read-directory-name "Save to (~/Downloads): " "~/Downloads" "~/Downloads" 'confirm' nil)))
1544       (let ((download-buffer (url-retrieve-synchronously url)))
1545         (save-excursion
1546           (set-buffer download-buffer)
1547           ;; we may have to trim the http response
1548           (goto-char (point-min))
1549           (re-search-forward "^$" nil 'move)
1550           (forward-char)
1551           (delete-region (point-min) (point))
1552           (write-file (concat (or download-dir
1553                                   "~/Downloads/")
1554                               (or download-name
1555                                   (car (last (split-string url "/" t))))))))))
1556 #+END_SRC
1557
1558 * Dired
1559 ** Dired bindings
1560 =C-o= is defined as a global key for window operation, here unset it in dired mode
1561 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1562   (defun sd/dired-key-map ()
1563     "My keybindings for dired"
1564     (interactive)
1565     ;; these two prefix are used globally
1566     (define-key dired-mode-map (kbd "C-o") nil)
1567     (define-key dired-mode-map (kbd "M-s") nil)
1568     ;; toggle hidden files
1569     (define-key dired-mode-map (kbd "H") 'dired-omit-mode)
1570     ;; scroll 
1571     (define-key dired-mode-map (kbd "SPC") 'scroll-up-command)
1572     (define-key dired-mode-map (kbd "DEL") 'scroll-down-command)
1573     (define-key dired-mode-map (kbd "j") 'diredp-next-line)
1574     (define-key dired-mode-map (kbd "k") 'diredp-previous-line)
1575     (define-key dired-mode-map (kbd "g") 'dired-goto-file)
1576     ;; (define-key dired-mode-map (kbd "S-SPC") 'scroll-down-command)
1577     ;; jump to fil/dirs
1578     (define-key dired-mode-map (kbd "f") 'dired-isearch-filenames)
1579     ;; subdir
1580     ;; i dired-maybe-insert-subdir
1581     ;; o dired-find-file-other-window (switch to other window)
1582     ;; O dired-display-file
1583     (define-key dired-mode-map (kbd "G") 'ido-dired)
1584     (define-key dired-mode-map (kbd "c") 'sd/dired-new-file)
1585     (define-key dired-mode-map (kbd "h") 'dired-summary)
1586     (define-key dired-mode-map (kbd "r") 'revert-buffer)
1587     (define-key dired-mode-map (kbd "l") 'dired-display-file)
1588     (define-key dired-mode-map [C-backspace] 'dired-up-directory)
1589     (define-key dired-mode-map (kbd "?") 'describe-mode)
1590     (define-key dired-mode-map (kbd "z") #'sd/dired-get-size)
1591     (define-key dired-mode-map (kbd "C-d") 'dired-kill-subdir)
1592     (define-key dired-mode-map (kbd "M-d") 'dired-kill-subdir)
1593     (define-key dired-mode-map (kbd "J") 'diredp-next-subdir)
1594     (define-key dired-mode-map (kbd "TAB") 'diredp-next-subdir)
1595     (define-key dired-mode-map (kbd "K") 'diredp-prev-subdir)
1596     (define-key dired-mode-map (kbd "O") 'dired-display-file)
1597     (define-key dired-mode-map (kbd "I") 'other-window)
1598     (define-key dired-mode-map (kbd "o") 'other-window)) 
1599
1600   (use-package dired
1601     :config
1602     (require 'dired-x)
1603     ;; also load dired+
1604     (use-package dired+
1605       :ensure t
1606       :init (setq diredp-hide-details-initially-flag nil))
1607     
1608     (setq dired-omit-mode t)
1609     (setq dired-omit-files (concat dired-omit-files "\\|^\\..+$"))
1610     (add-hook 'dired-mode-hook (lambda ()
1611                                  (sd/dired-key-map)
1612                                  (dired-omit-mode))))
1613
1614   (defadvice dired-summary (around sd/dired-summary activate)
1615     "Revisied dired summary."
1616     (interactive)
1617     (dired-why)
1618     (message
1619      "Δ: d-delete, u-ndelete, x-punge, f-ind, o-ther window, R-ename, C-opy, c-create, +new dir, r-evert, /-filter, v-iew, l-ist, z-Size, h-summary, ?-help"))
1620
1621   (defun sd/dired-high-level-dir ()
1622     "Go to higher level directory"
1623     (interactive)
1624     (find-alternate-file ".."))
1625 #+END_SRC
1626
1627 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1628   (defun sd/dired-new-file ()
1629     "Create a new file in dired mode"
1630     (interactive)
1631     (call-interactively 'find-file))
1632
1633   ;; copied from abo-abo's config
1634   (defun sd/dired-get-size ()
1635     (interactive)
1636     (let ((files (dired-get-marked-files)))
1637       (with-temp-buffer
1638         (apply 'call-process "/usr/bin/du" nil t nil "-sch" files)
1639         (message
1640          "Size of all marked files: %s"
1641          (progn
1642            (re-search-backward "\\(^[ 0-9.,]+[A-Za-z]+\\).*total$")
1643            (match-string 1))))))
1644 #+END_SRC
1645
1646 ** disable ido when dired new file
1647 When create a new directory, I want to disalbe =ido= completion. see [[http://stackoverflow.com/questions/7479565/emacs-ido-mode-and-creating-new-files-in-directories-it-keeps-changing-the-dire][here]]. Thhis code snippets copied
1648 from [[https://emacs.stackexchange.com/questions/13713/how-to-disable-ido-in-dired-create-directory/13795#13795?newreg%3Ddb17c20f7af3490fb11cf15f1d888e9e][How to disable IDO in ‘dired-create-directory’]]
1649 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1650   (defun mk-anti-ido-advice (func &rest args)
1651     "Temporarily disable IDO and call function FUNC with arguments ARGS."
1652     (interactive)
1653     (let ((read-file-name-function #'read-file-name-default))
1654       (if (called-interactively-p 'any)
1655           (call-interactively func)
1656         (apply func args))))
1657
1658   (defun mk-disable-ido (command)
1659     "Disable IDO when command COMMAND is called."
1660     (advice-add command :around #'mk-anti-ido-advice))
1661 #+END_SRC
1662
1663 Disalble =ido= when new a directory or file in =dired= mode
1664 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1665   ;; call the function which you want to disable ido
1666   (mk-disable-ido 'dired-create-directory)
1667   (mk-disable-ido 'sd/dired-new-file)
1668   (mk-disable-ido 'dired-goto-file)
1669 #+END_SRC
1670
1671 ** Dired open with
1672 =!= =dired-do-shell-command=
1673 =&= =dired-do-async-shell-command=
1674 here on Mac, just use "open" commands to pen =.pdf=,  =.html= and image files
1675 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1676   (setq dired-guess-shell-alist-user
1677         '(("\\.pdf\\'" "open" "okular")
1678           ("\\.\\(?:djvu\\|eps\\)\\'" "evince")
1679           ("\\.\\(?:jpg\\|jpeg\\|png\\|gif\\|xpm\\)\\'" "open")
1680           ("\\.\\(?:xcf\\)\\'" "gimp")
1681           ("\\.csv\\'" "libreoffice")
1682           ("\\.tex\\'" "pdflatex" "latex")
1683           ("\\.\\(?:mp4\\|mkv\\|avi\\|rmvb\\|flv\\|ogv\\)\\(?:\\.part\\)?\\'" "mplayer")
1684           ("\\.\\(?:mp3\\|flac\\)\\'" "rhythmbox")
1685           ("\\.html?\\'" "open")
1686           ("\\.dmg\\'" "open")
1687           ("\\.cue?\\'" "audacious")))
1688
1689
1690   (defun sd/dired-start-process (cmd &optional file-list)
1691     (interactive
1692      (let ((files (dired-get-marked-files
1693                    t current-prefix-arg)))
1694        (list
1695         (unless (eq system-type 'windows-nt)
1696           (dired-read-shell-command "& on %s: "
1697                                     current-prefix-arg files))
1698         files)))
1699     
1700     (if (eq system-type 'windows-nt)
1701         (dolist (file file-list)
1702           (w32-shell-execute "open" (expand-file-name file)))
1703       (let (list-switch)
1704         (start-process
1705          cmd nil shell-file-name
1706          shell-command-switch
1707          (format
1708           "nohup 1>/dev/null 2>/dev/null %s \"%s\""
1709           cmd
1710           ;; (if (and (> (length file-list) 1)
1711           ;;          (setq list-switch
1712           ;;                (cadr (assoc cmd ora-dired-filelist-cmd))))
1713           ;;     (format "%s %s" cmd list-switch)
1714           ;;   cmd)
1715           (mapconcat #'expand-file-name file-list "\" \""))))))
1716 #+END_SRC
1717
1718 ** dired-hacks
1719 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1720   (use-package dired-hacks-utils
1721     :ensure t
1722     :defer t)
1723 #+END_SRC
1724
1725 ** dired-narrow
1726 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1727   ;;narrow dired to match filter
1728   (use-package dired-narrow
1729     :ensure t
1730     :commands (dired-narrow)
1731     :bind (:map dired-mode-map
1732                 ("/" . dired-narrow)))
1733 #+END_SRC
1734
1735 * Ibuffer
1736 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1737   (global-set-key (kbd "s-b") 'ibuffer)
1738
1739   (with-eval-after-load 'ibuffer
1740     (define-key ibuffer-mode-map (kbd "C-o") nil)
1741     (define-key ibuffer-mode-map (kbd "j") 'ibuffer-forward-line)
1742     (define-key ibuffer-mode-map (kbd "k") 'ibuffer-backward-line)
1743     (define-key ibuffer-mode-map (kbd "r") 'ibuffer-update)
1744     (define-key ibuffer-mode-map (kbd "g") 'ibuffer-jump-to-buffer)
1745     (define-key ibuffer-mode-map (kbd "h") 'sd/ibuffer-summary))
1746
1747   (defun sd/ibuffer-summary ()
1748     "Show summary of keybindings in ibuffer mode"
1749     (interactive)
1750     (message
1751      "Β: m|u - (un)mark, /-filter, //-remove filter, t, RET, g, k, S, D, Q; q to quit; h for help"))
1752 #+END_SRC
1753
1754 * Completion
1755 ** company mode and company-statistics
1756 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1757   (use-package company
1758     :ensure t
1759     :diminish company-mode
1760     :init (setq company-idle-delay 0.1)
1761     (setq company-selection-wrap-around t)
1762     :config
1763     (define-key company-active-map (kbd "M-n") nil)
1764     (define-key company-active-map (kbd "M-p") nil)
1765     (define-key company-active-map (kbd "C-n") #'company-select-next)
1766     (define-key company-active-map (kbd "C-p") #'company-select-previous)
1767      ;; should map both (kbd "TAB") and [tab],https://github.com/company-mode/company-mode/issues/75
1768     (define-key company-active-map (kbd "TAB") #'company-complete-selection)
1769     (define-key company-active-map [tab] #'company-complete-selection)
1770     (global-company-mode)
1771     (setq company-global-modes '(not org-mode)))
1772
1773   (use-package company-statistics
1774     :ensure t
1775     :config
1776     (company-statistics-mode))
1777 #+END_SRC
1778
1779 ** YASnippet
1780 *** yasnippet
1781 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1782   (use-package yasnippet
1783     :ensure t
1784     :defer t
1785     :init
1786     (add-hook 'prog-mode-hook #'yas-minor-mode)
1787     :config
1788     (yas-reload-all))
1789 #+END_SRC
1790
1791
1792 ** company and yasnippet
1793 Add yasnippet as the company candidates
1794 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1795   ;Add yasnippet support for all company backends
1796   ;https://github.com/syl20bnr/spacemacs/pull/179
1797   (defvar company-mode/enable-yas t
1798     "Enable yasnippet for all backends.")
1799
1800   (defun company-mode/backend-with-yas (backend)
1801     (if (or (not company-mode/enable-yas) (and (listp backend) (member 'company-yasnippet backend)))
1802         backend
1803       (append (if (consp backend) backend (list backend))
1804               '(:with company-yasnippet))))
1805
1806   (setq company-backends (mapcar #'company-mode/backend-with-yas company-backends))
1807 #+END_SRC
1808
1809 Refer, [[http://emacs.stackexchange.com/questions/7908/how-to-make-yasnippet-and-company-work-nicer][how-to-make-yasnippet-and-company-work-nicer]]
1810 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1811   (defun check-expansion ()
1812     (save-excursion
1813       (if (looking-at "\\_>") t
1814         (backward-char 1)
1815         (if (looking-at "\\.") t
1816           (backward-char 1)
1817           (if (looking-at "->") t nil)))))
1818
1819   (defun do-yas-expand ()
1820     (let ((yas/fallback-behavior 'return-nil))
1821       (yas/expand)))
1822
1823   (defun tab-indent-or-complete ()
1824     (interactive)
1825     (cond
1826      ((minibufferp)
1827       (minibuffer-complete))
1828      (t
1829       (indent-for-tab-command)
1830       (if (or (not yas/minor-mode)
1831               (null (do-yas-expand)))
1832           (if (check-expansion)
1833               (progn
1834                 (company-manual-begin)
1835                 (if (null company-candidates)
1836                     (progn
1837                       (company-abort)
1838                       (indent-for-tab-command)))))))))
1839
1840   (defun tab-complete-or-next-field ()
1841     (interactive)
1842     (if (or (not yas/minor-mode)
1843             (null (do-yas-expand)))
1844         (if company-candidates
1845             (company-complete-selection)
1846           (if (check-expansion)
1847               (progn
1848                 (company-manual-begin)
1849                 (if (null company-candidates)
1850                     (progn
1851                       (company-abort)
1852                       (yas-next-field))))
1853             (yas-next-field)))))
1854
1855   (defun expand-snippet-or-complete-selection ()
1856     (interactive)
1857     (if (or (not yas/minor-mode)
1858             (null (do-yas-expand))
1859             (company-abort))
1860         (company-complete-selection)))
1861
1862   (defun abort-company-or-yas ()
1863     (interactive)
1864     (if (null company-candidates)
1865         (yas-abort-snippet)
1866       (company-abort)))
1867
1868   '
1869   ;; (require 'company)
1870   ;; (require 'yasnippet)
1871
1872
1873   ;; (global-set-key [tab] 'tab-indent-or-complete)
1874   ;; (global-set-key (kbd "TAB") 'tab-indent-or-complete)
1875   ;; (global-set-key [(control return)] 'company-complete-common)
1876
1877   ;; (define-key company-active-map [tab] 'expand-snippet-or-complete-selection)
1878   ;; (define-key company-active-map (kbd "TAB") 'expand-snippet-or-complete-selection)
1879
1880   ;; (define-key yas-minor-mode-map [tab] nil)
1881   ;; (define-key yas-minor-mode-map (kbd "TAB") nil)
1882
1883   ;; (define-key yas-keymap [tab] 'tab-complete-or-next-field)
1884   ;; (define-key yas-keymap (kbd "TAB") 'tab-complete-or-next-field)
1885   ;; (define-key yas-keymap [(control tab)] 'yas-next-field)
1886   ;; (define-key yas-keymap (kbd "C-g") 'abort-company-or-yas)
1887 #+END_SRC
1888
1889 * Libs
1890 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1891   (use-package s
1892     :ensure t)
1893 #+END_SRC
1894
1895 * Programming Language
1896 ** Emacs Lisp
1897 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1898   (use-package color-identifiers-mode
1899     :ensure t
1900     :init
1901     (add-hook 'emacs-lisp-mode-hook 'color-identifiers-mode)
1902
1903     :diminish color-identifiers-mode)
1904
1905   (global-prettify-symbols-mode t)
1906 #+END_SRC
1907
1908 In Lisp Mode, =M-o= is defined, but I use this for global hydra window. So here disable this key
1909 bindings in =lispy-mode-map= after loaded. see [[http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings][here]]
1910 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1911   (use-package lispy
1912     :ensure t
1913     :init
1914     (eval-after-load "lispy"
1915       `(progn
1916          (define-key lispy-mode-map (kbd "M-o") nil)))
1917     :config
1918     (add-hook 'emacs-lisp-mode-hook (lambda () (lispy-mode 1))))
1919 #+END_SRC
1920
1921 ** Perl
1922 *** CPerl mode
1923 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
1924 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1925   (defalias 'perl-mode 'cperl-mode)
1926
1927   ;; (setq cperl-hairy t)
1928   ;; Turns on most of the CPerlMode options
1929   (setq cperl-auto-newline t)
1930   (setq cperl-highlight-variables-indiscriminately t)
1931   ;(setq cperl-indent-level 4)
1932   ;(setq cperl-continued-statement-offset 4)
1933   (setq cperl-close-paren-offset -4)
1934   (setq cperl-indent-parents-as-block t)
1935   (setq cperl-tab-always-indent t)
1936   ;(setq cperl-brace-offset  0)
1937
1938   (add-hook 'cperl-mode-hook
1939             '(lambda ()
1940                (cperl-set-style "C++")))
1941
1942   (defalias 'perldoc 'cperl-perldoc)
1943 #+END_SRC
1944
1945 *** Perl template
1946 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
1947 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1948   (eval-after-load 'autoinsert
1949     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
1950        '(
1951          "Empty"
1952          "#!/usr/bin/perl -w" \n
1953          \n
1954          "use strict;" >  \n \n
1955          > _
1956          )))
1957 #+END_SRC
1958
1959 *** Perl Keywords
1960 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1961   (font-lock-add-keywords 'cperl-mode
1962                           '(("\\(say\\)" . cperl-nonoverridable-face)
1963                             ("\\([0-9.]\\)*" . font-lock-constant-face)
1964                             ("\".*\\(\\\n\\).*\"" . font-lock-constant-face)
1965                             ("\n" . font-lock-constant-face)
1966                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
1967
1968     ;; (font-lock-add-keywords 'Man-mode
1969     ;;                         '(("\\(NAME\\)" . font-lock-function-name-face)))
1970
1971 #+END_SRC
1972
1973 *** Run Perl
1974 Change the compile-command to set the default command run when call =compile=
1975 Mapping =s-r= (on Mac, it's =Command + R= to run the script. Here =current-prefix-arg= is set
1976 to call =compilation=  interactively.
1977 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1978   (defun my-perl-hook ()
1979     (progn
1980       (setq-local compilation-read-command nil)
1981       (set (make-local-variable 'compile-command)
1982            (concat "/usr/bin/perl "
1983                    (if buffer-file-name
1984                        (shell-quote-argument buffer-file-name))))
1985       (local-set-key (kbd "s-r")
1986                      (lambda ()
1987                        (interactive)
1988                                           ;                       (setq current-prefix-arg '(4)) ; C-u
1989                        (call-interactively 'compile)))))
1990
1991   (add-hook 'cperl-mode-hook 'my-perl-hook)
1992 #+END_SRC
1993
1994 ** C & C++
1995 C/C++ ide tools
1996 1. completion (file name, function name, variable name)
1997 2. template yasnippet (keywords, if, function)
1998 3. tags jump
1999 *** c/c++ style
2000 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2001   (setq c-default-style "stroustrup"
2002         c-basic-offset 4)
2003
2004   ;; "C-M-j" is my global binding for avy goto line below
2005   ;; disable it in c mode
2006   (mapcar #'(lambda (map)
2007              (define-key map (kbd "C-M-j") nil))
2008           (list c-mode-map
2009                 c++-mode-map
2010                 objc-mode-map))
2011
2012   ;; objective c
2013   (add-to-list 'auto-mode-alist '("\\.mm\\'" . objc-mode))
2014 #+END_SRC
2015
2016 *** irony
2017 **** install irony server
2018 Install clang, on mac, it has =libclang.dylib=, but no develop headers. Install by =brew=
2019 #+BEGIN_SRC sh
2020   brew install llvm --with-clang
2021 #+END_SRC
2022
2023 then install irony searver, and =LIBCLANG_LIBRARY= and =LIBCLANG_INCLUDE_DIR= accordingly
2024 #+BEGIN_SRC emacs-lisp :tangle no :results silent
2025   (irony-install-server)
2026 #+END_SRC
2027
2028 #+BEGIN_SRC sh
2029   cmake -DLIBCLANG_LIBRARY\=/usr/local/Cellar/llvm/3.6.2/lib/libclang.dylib \
2030         -DLIBCLANG_INCLUDE_DIR=/usr/local/Cellar/llvm/3.6.2/include \
2031         -DCMAKE_INSTALL_PREFIX\=/Users/peli3/.emacs.d/irony/ \
2032         /Users/peli3/.emacs.d/elpa/irony-20160713.1245/server && cmake --build . --use-stderr --config Release --target install 
2033 #+END_SRC
2034
2035 **** irony config
2036 irony-mode-hook, copied from [[https://github.com/Sarcasm/irony-mode][irony-mode]] github
2037 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2038   (use-package irony
2039     :ensure t
2040     :config
2041     (add-hook 'c++-mode-hook 'irony-mode)
2042     (add-hook 'c-mode-hook 'irony-mode)
2043     (add-hook 'objc-mode-hook 'irony-mode))
2044
2045   ;; replace the `completion-at-point' and `complete-symbol' bindings in
2046   ;; irony-mode's buffers by irony-mode's function
2047
2048   (defun my-irony-mode-hook ()
2049     (define-key irony-mode-map [remap completion-at-point]
2050       'irony-completion-at-point-async)
2051     (define-key irony-mode-map [remap complete-symbol]
2052       'irony-completion-at-point-async))
2053
2054   (add-hook 'irony-mode-hook 'my-irony-mode-hook)
2055   (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)
2056
2057   (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
2058
2059   ;; add C++ completions, because by default c++ file can not complete
2060   ;; c++ std functions, another method is create .dir-local.el file, for p
2061   ;; for project see irony
2062   (defun sd/c++-mode-local-vars ()
2063     (setq irony--compile-options
2064         '("-std=c++11"
2065           "-stdlib=libc++"
2066           "-I/usr/include/c++/4.2.1")))
2067 #+END_SRC
2068
2069 irony-company
2070 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2071   (use-package company-irony
2072     :ensure t)
2073
2074   (use-package flycheck-irony
2075     :ensure t)
2076
2077   (use-package company-c-headers
2078     :ensure t
2079     :config
2080     (add-to-list 'company-c-headers-path-system "/usr/include/c++/4.2.1/"))
2081
2082   ;; (with-eval-after-load 'company
2083   ;;   (add-to-list 'company-backends 'company-irony)
2084   ;;   (add-to-list 'company-backends 'company-c-headers))
2085
2086   (with-eval-after-load 'company
2087     (push  '(company-irony :with company-yasnippet) company-backends)
2088     (push  '(company-c-headers :with company-yasnippet) company-backends))
2089
2090   (with-eval-after-load 'flycheck
2091     (add-hook 'flycheck-mode-hook #'flycheck-irony-setup))
2092 #+END_SRC
2093
2094 *** flycheck
2095 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2096   (use-package flycheck
2097     :ensure t)
2098 #+END_SRC
2099
2100 *** gtags
2101 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2102   (use-package ggtags
2103     :ensure t
2104     :config
2105     (define-key ggtags-mode-map (kbd "M-g d") 'ggtags-find-definition)
2106     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2107     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2108     (define-key ggtags-mode-map (kbd "C-c g s") 'ggtags-find-other-symbol)
2109     (define-key ggtags-mode-map (kbd "C-c g h") 'ggtags-view-tag-history)
2110     (define-key ggtags-mode-map (kbd "C-c g r") 'ggtags-find-reference)
2111     (define-key ggtags-mode-map (kbd "C-c g f") 'ggtags-find-file)
2112     (define-key ggtags-mode-map (kbd "C-c g c") 'ggtags-create-tags)
2113     (define-key ggtags-mode-map (kbd "C-c g u") 'ggtags-update-tags))
2114
2115   (add-hook 'c-mode-common-hook
2116             (lambda ()
2117               (when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
2118                 (ggtags-mode 1))))
2119
2120   (require 'cc-mode)
2121   (require 'semantic)
2122
2123   (global-semanticdb-minor-mode 1)
2124   (global-semantic-idle-scheduler-mode 1)
2125
2126   (semantic-mode 1)
2127 #+END_SRC
2128
2129 *** google C style
2130 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2131   (use-package google-c-style
2132     :ensure t
2133     :config
2134     (add-hook 'c-mode-hook 'google-set-c-style)
2135     (add-hook 'c++-mode-hook 'google-set-c-style))
2136 #+END_SRC
2137
2138 ** Lua
2139 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2140   (use-package lua-mode
2141     :ensure t)
2142 #+END_SRC
2143
2144 ** Scheme
2145 Install =guile=, =guile= is an implementation of =Scheme= programming language.
2146 #+BEGIN_SRC sh
2147   brew install guile
2148 #+END_SRC
2149
2150 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2151   (setq geiser-scheme-implementation 'guile)
2152 #+END_SRC
2153
2154 #+BEGIN_SRC scheme
2155   (define a "3")
2156   a
2157 #+END_SRC
2158
2159 #+RESULTS:
2160 : 3
2161
2162 ** Racket
2163 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2164   (use-package racket-mode
2165     :ensure t
2166     :config
2167     (define-key racket-mode-map (kbd "s-r") 'racket-run)
2168     (add-to-list 'racket-mode-hook (lambda () (lispy-mode 1))))
2169
2170   ;; set racket path
2171   (setenv "PATH" (concat (getenv "PATH")
2172                          ":" "/Applications/Racket v6.6/bin"))
2173   (setenv "MANPATH" (concat (getenv "MANPATH")
2174                             ":" "/Applications/Racket v6.6/man"))
2175   (setq exec-path (append exec-path '("/Applications/Racket v6.6/bin")))
2176
2177   (add-to-list 'auto-mode-alist '("\\.rkt\\'" . racket-mode))
2178 #+END_SRC
2179
2180 * Compile
2181 Set the environments vairables in compilation mode
2182 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2183   (use-package compile
2184     :commands compile
2185     :config
2186     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
2187     (setq compilation-auto-jump-to-first-error t)
2188     (setq compilation-auto-jump-to-next t)
2189     (setq compilation-scroll-output 'first-error))
2190
2191   ;; super-r to compile
2192   (with-eval-after-load "compile"
2193     (define-key compilation-mode-map (kbd "C-o") nil)
2194     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
2195     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
2196     (define-key compilation-mode-map (kbd "r") #'recompile))
2197
2198   (global-set-key (kbd "s-r") 'compile)
2199 #+END_SRC
2200
2201 * Auto-Insert
2202 ** Enable auto-insert mode
2203 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2204   (auto-insert-mode t)
2205   (setq auto-insert-query nil)
2206 #+END_SRC
2207
2208 ** C++ Auto Insert
2209 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2210   (eval-after-load 'autoinsert
2211     '(define-auto-insert '("\\.cpp\\|.cc\\'" . "C++ skeleton")
2212        '(
2213          "Short description:"
2214          "/*"
2215          "\n * " (file-name-nondirectory (buffer-file-name))
2216          "\n */" > \n \n
2217          "#include <iostream>" \n
2218          "//#include \""
2219          (file-name-sans-extension
2220           (file-name-nondirectory (buffer-file-name)))
2221          ".hpp\"" \n \n
2222          "using namespace std;" \n \n
2223          "int main (int argc, char *argv[])"
2224          "\n{" \n 
2225          > _ \n
2226          "return 0;"
2227          "\n}" > \n
2228          )))
2229
2230   (eval-after-load 'autoinsert
2231     '(define-auto-insert '("\\.c\\'" . "C skeleton")
2232        '(
2233          "Short description:"
2234          "/*\n"
2235          " * " (file-name-nondirectory (buffer-file-name)) "\n"
2236          " */" > \n \n
2237          "#include <stdio.h>" \n
2238          "//#include \""
2239          (file-name-sans-extension
2240           (file-name-nondirectory (buffer-file-name)))
2241          ".h\"" \n \n
2242          "int main (int argc, char *argv[])\n"
2243          "{" \n
2244          > _ \n
2245          "return 0;\n"
2246          "}" > \n
2247          )))
2248
2249   (eval-after-load 'autoinsert
2250     '(define-auto-insert '("\\.h\\|.hpp\\'" . "c/c++ header")
2251        '((s-upcase (s-snake-case (file-name-nondirectory buffer-file-name)))
2252          "#ifndef " str n "#define " str "\n\n" _ "\n\n#endif  // " str)))
2253 #+END_SRC
2254
2255 ** Python template
2256 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2257   (eval-after-load 'autoinsert
2258     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
2259        '(
2260          "Empty"
2261          "#import os,sys" \n
2262          \n \n
2263          )))
2264 #+END_SRC
2265
2266 ** Elisp 
2267 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
2268 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
2269 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2270   (eval-after-load 'autoinsert
2271     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
2272        '(
2273          "Short description: "
2274          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
2275          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
2276          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
2277          "\n
2278   ;; Copyright (C) " (format-time-string "%Y") "  "
2279          (getenv "ORGANIZATION") | (progn user-full-name) "
2280
2281   ;; Author: " (user-full-name)
2282          '(if (search-backward "&" (line-beginning-position) t)
2283               (replace-match (capitalize (user-login-name)) t t))
2284          '(end-of-line 1) " <" (progn user-mail-address) ">
2285   ;; Keywords: "
2286          '(require 'finder)
2287          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
2288          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
2289                            finder-known-keywords)
2290                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
2291                               finder-known-keywords
2292                               "\n"))
2293          ((let ((minibuffer-help-form v2))
2294             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
2295           str ", ") & -2 "
2296
2297   \;; This program is free software; you can redistribute it and/or modify
2298   \;; it under the terms of the GNU General Public License as published by
2299   \;; the Free Software Foundation, either version 3 of the License, or
2300   \;; (at your option) any later version.
2301
2302   \;; This program is distributed in the hope that it will be useful,
2303   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2304   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2305   \;; GNU General Public License for more details.
2306
2307   \;; You should have received a copy of the GNU General Public License
2308   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
2309
2310   \;;; Commentary:
2311
2312   \;; " _ "
2313
2314   \;;; Code:
2315
2316
2317   \(provide '"
2318          (file-name-base)
2319          ")
2320   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
2321 #+END_SRC
2322
2323 ** Org file template
2324 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2325   (eval-after-load 'autoinsert
2326     '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
2327        '(
2328          "title: "
2329          "#+TITLE: " str (make-string 30 ?\s) > \n
2330          "#+AUTHOR: Peng Li\n"
2331          "#+EMAIL: seudut@gmail.com\n"
2332          "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
2333          > \n
2334          > _)))
2335 #+END_SRC
2336
2337 * Markdown mode
2338 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2339   (use-package markdown-mode
2340     :ensure t
2341     :commands (markdown-mode gfm-mode)
2342     :mode (("README\\.md\\'" . gfm-mode)
2343            ("\\.md\\'" . markdown-mode)
2344            ("\\.markdown\\'" . markdown-mode))
2345     :init (setq markdown-command "multimarkdown"))
2346 #+END_SRC
2347
2348 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2349   (use-package markdown-preview-eww
2350     :ensure t)
2351 #+END_SRC
2352
2353 * Gnus
2354 ** Gmail setting 
2355 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
2356 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2357   (setq user-mail-address "seudut@gmail.com"
2358         user-full-name "Peng Li")
2359
2360   (setq gnus-select-method
2361         '(nnimap "gmail"
2362                  (nnimap-address "imap.gmail.com")
2363                  (nnimap-server-port "imaps")
2364                  (nnimap-stream ssl)))
2365
2366   (setq smtpmail-smtp-service 587
2367         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
2368
2369   ;; Use gmail sending mail
2370   (setq message-send-mail-function 'smtpmail-send-it
2371         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
2372         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
2373         smtpmail-default-smtp-server "smtp.gmail.com"
2374         smtpmail-smtp-server "smtp.gmail.com"
2375         smtpmail-smtp-service 587
2376         starttls-use-gnutls t)
2377 #+END_SRC
2378
2379 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
2380 and =<PASSWORD>= with the password
2381 #+BEGIN_EXAMPLE
2382   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
2383   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
2384 #+END_EXAMPLE
2385
2386 Then Run =M-x gnus=
2387
2388 ** Group buffer
2389 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2390   (use-package gnus
2391     :init
2392     (setq gnus-permanently-visible-groups "\.*")
2393     :config
2394     (cond (window-system
2395            (setq custom-background-mode 'light)
2396            (defface my-group-face-1
2397              '((t (:foreground "Red" :bold t))) "First group face")
2398            (defface my-group-face-2
2399              '((t (:foreground "DarkSeaGreen4" :bold t)))
2400              "Second group face")
2401            (defface my-group-face-3
2402              '((t (:foreground "Green4" :bold t))) "Third group face")
2403            (defface my-group-face-4
2404              '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
2405            (defface my-group-face-5
2406              '((t (:foreground "Blue" :bold t))) "Fifth group face")))
2407     (setq gnus-group-highlight
2408           '(((> unread 200) . my-group-face-1)
2409             ((and (< level 3) (zerop unread)) . my-group-face-2)
2410             ((< level 3) . my-group-face-3)
2411             ((zerop unread) . my-group-face-4)
2412             (t . my-group-face-5))))
2413
2414
2415   ;; key-
2416   (add-hook 'gnus-group-mode-hook (lambda ()
2417                                     (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
2418                                     (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
2419                                     (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
2420                                     (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
2421 #+END_SRC
2422
2423 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2424   (setq gnus-fetch-old-headers 't)
2425
2426
2427
2428   (setq gnus-extract-address-components
2429         'mail-extract-address-components)
2430   ;; summary buffer 
2431   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
2432   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
2433                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
2434                                       (604800 . "%a, %b %-d")
2435                                       (15778476 . "%b %-d")
2436                                       (t . "%Y-%m-%d")))
2437
2438   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
2439   (setq gnus-unread-mark ?\.)
2440   (setq gnus-use-correct-string-widths t)
2441
2442   ;; thread
2443   (setq gnus-thread-hide-subtree t)
2444
2445   ;; (with-eval-after-load 'gnus-summary-mode
2446   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
2447
2448   (add-hook 'gnus-summary-mode-hook (lambda ()
2449                                       (define-key gnus-summary-mode-map (kbd "C-o") nil)))
2450
2451
2452 #+END_SRC
2453
2454 ** Windows layout
2455 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
2456 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2457   (gnus-add-configuration
2458    '(summary
2459      (horizontal 1.0
2460                  (vertical 35
2461                            (group 1.0))
2462                  (vertical 1.0
2463                            (summary 1.0 poine)))))
2464
2465   (gnus-add-configuration
2466    '(article
2467      (horizontal 1.0
2468                  (vertical 35
2469                            (group 1.0))
2470                  (vertical 1.0
2471                            (summary 0.50 point)
2472                            (article 1.0)))))
2473
2474   (with-eval-after-load 'gnus-group-mode
2475     (gnus-group-select-group "INBOX"))
2476   ;; (add-hook 'gnus-group-mode-map (lambda ()
2477   ;;                               (gnus-group-select-group "INBOX")))
2478 #+END_SRC
2479
2480 * Mu4e
2481 Refer [[http://www.kirang.in/2014/11/13/emacs-as-email-client-with-offlineimap-and-mu4e-on-osx][emacs-as-email-client-with-offlineimap-and-mu4e-on-osx]]
2482
2483 ** OfflineImap - download all mails from IMAP into local directory, and keep in sync
2484 #+BEGIN_SRC sh :results output replace
2485   # offline-imap
2486   brew install offline-imap
2487
2488   cp /usr/local/etc/offlineimap.conf ~/.offlineimapr
2489
2490   #For the =offlineimap= config on mac, using =sslcacertfile= instead of =cert_fingerpring=. On Mac
2491   sslcacertfile = /usr/local/etc/openssl/cert.pem 
2492 #+END_SRC
2493
2494 #+BEGIN_SRC conf 
2495   [general]
2496   ui=TTYUI
2497   accounts = Gmail
2498   autorefresh = 5
2499
2500   [Account Gmail]
2501   localrepository = Gmail-Local
2502   remoterepository = Gmail-Remote
2503
2504   [Repository Gmail-Local]
2505   type = Maildir
2506   localfolders = ~/.Mail/seudut@gmail.com
2507
2508   [Repository Gmail-Remote]
2509   type = Gmail
2510   remotehost = imap.gmail.com
2511   remoteuser = seudut@gmail.com
2512   remotepass = xxxxxxxx
2513   realdelete = no
2514   ssl = yes
2515   #cert_fingerprint = <insert gmail server fingerprint here>
2516   sslcacertfile = /usr/local/etc/openssl/cert.pem
2517   maxconnections = 1
2518   folderfilter = lambda folder: folder not in ['[Gmail]/Trash',
2519                                                '[Gmail]/Spam',
2520                                                '[Gmail]/All Mail',
2521                                                ]
2522 #+END_SRC
2523
2524 Then, run =offlineimap= to sync the mail
2525
2526 ** Mu - fast search, view mails and extract attachments.
2527 #+BEGIN_SRC sh
2528   EMACS=/usr/local/bin/emacs brew install mu --with-emacs
2529 #+END_SRC
2530
2531 Then, run =mu index --maildir=~/.Mail=
2532
2533 ** Mu4e - Emacs frontend of Mu
2534 config from [[http://www.kirang.in/2014/11/13/emacs-as-email-client-with-offlineimap-and-mu4e-on-osx/][emacs-as-email-client-with-offlineimap-and-mu4e-on-osx]]
2535 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2536   (require 'mu4e)
2537   (setq mu4e-maildir "~/.Mail")
2538   (setq mu4e-drafts-folder "/[Gmail].Drafts")
2539   (setq mu4e-sent-folder   "/[Gmail].Sent Mail")
2540   ;; don't save message to Sent Messages, Gmail/IMAP takes care of this
2541   (setq mu4e-sent-messages-behavior 'delete)
2542   ;; allow for updating mail using 'U' in the main view:
2543   (setq mu4e-get-mail-command "offlineimap")
2544
2545   ;; shortcuts
2546   (setq mu4e-maildir-shortcuts
2547       '( ("/INBOX"               . ?i)
2548          ("/[Gmail].Sent Mail"   . ?s)))
2549
2550   ;; something about ourselves
2551   (setq
2552      user-mail-address "seudut@gmail.com"
2553      user-full-name  "Peng Li"
2554      mu4e-compose-signature
2555       (concat
2556         "Thanks,\n"
2557         "Peng\n"))
2558
2559   ;; show images
2560   (setq mu4e-show-images t)
2561
2562   ;; use imagemagick, if available
2563   (when (fboundp 'imagemagick-register-types)
2564     (imagemagick-register-types))
2565
2566   ;; convert html emails properly
2567   ;; Possible options:
2568   ;;   - html2text -utf8 -width 72
2569   ;;   - textutil -stdin -format html -convert txt -stdout
2570   ;;   - html2markdown | grep -v '&nbsp_place_holder;' (Requires html2text pypi)
2571   ;;   - w3m -dump -cols 80 -T text/html
2572   ;;   - view in browser (provided below)
2573   (setq mu4e-html2text-command "textutil -stdin -format html -convert txt -stdout")
2574
2575   ;; spell check
2576   (add-hook 'mu4e-compose-mode-hook
2577           (defun my-do-compose-stuff ()
2578              "My settings for message composition."
2579              (set-fill-column 72)
2580              (flyspell-mode)))
2581
2582   ;; add option to view html message in a browser
2583   ;; `aV` in view to activate
2584   (add-to-list 'mu4e-view-actions
2585     '("ViewInBrowser" . mu4e-action-view-in-browser) t)
2586
2587   ;; fetch mail every 10 mins
2588   (setq mu4e-update-interval 600)
2589
2590   ;; mu4e view
2591   (setq-default mu4e-headers-fields '((:flags . 6)
2592                                       (:from-or-to . 22)
2593                                       (:mailing-list . 20)
2594                                       (:thread-subject . 70)
2595                                       (:human-date . 16)))
2596 #+END_SRC
2597
2598 ** Smtp - send mail
2599 - =gnutls=, depends on =gnutls=, first confirm this is installed, otherwise, =brew install gnutls=
2600 - =~/.authinfo=
2601 #+BEGIN_SRC fundamental 
2602   machine smtp.gmail.com login <gmail username> password <gmail password>
2603 #+END_SRC
2604 - OPTIONAL, encrypt the =~/.authinfo= file
2605 #+BEGIN_SRC sh :results output replace
2606   gpg --output ~/.authinfo.gpg --symmetric ~/.authinfo
2607 #+END_SRC
2608
2609 * Ediff
2610 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2611   (with-eval-after-load 'ediff
2612     (setq ediff-split-window-function 'split-window-horizontally)
2613     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
2614     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
2615     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
2616     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
2617 #+END_SRC
2618
2619 * Entertainment
2620 ** GnuGo
2621 Play Go in Emacs, gnugo xpm refert [[https://github.com/okanotor/dotemacs/blob/f95b774cb292d1169748bc0a62ba647bbd8c0652/etc/my-inits/my-inits-gnugo.el][to here]]. start at image display mode and grid mode
2622 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2623   (use-package gnugo
2624     :ensure t
2625     :defer t
2626     :init
2627     (require 'gnugo-imgen)
2628     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
2629     (add-hook 'gnugo-start-game-hook '(lambda ()
2630                                         (gnugo-image-display-mode)
2631                                         (gnugo-grid-mode)))
2632     :config
2633     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
2634 #+END_SRC
2635
2636 ** Emms
2637 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
2638 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2639   (use-package emms
2640     :ensure t
2641     :init
2642     (setq emms-directory (concat sd-temp-directory "emms"))
2643     (setq emms-source-file-default-directory "~/Music/")
2644     :config
2645     (emms-standard)
2646     (emms-default-players)
2647     (define-emms-simple-player mplayer '(file url)
2648       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
2649                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
2650                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
2651                     ".m4a" ".flv" ".ogv" ".pls"))
2652       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
2653     (emms-history-load))
2654 #+END_SRC
2655
2656 * Dictionary
2657 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2658   (use-package bing-dict
2659     :ensure t
2660     :init
2661     (global-set-key (kbd "s-d") 'bing-dict-brief)
2662     :commands (bing-dict-brief))
2663 #+END_SRC
2664
2665 * Key Bindings
2666 Here are some global key bindings for basic editting
2667 ** Esc in minibuffer
2668 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
2669 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2670   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
2671   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
2672   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
2673   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
2674   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
2675   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
2676   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
2677   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
2678   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
2679
2680   ;; Also map s-h same as C-g
2681   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
2682 #+END_SRC
2683
2684 ** Project operations - =super=
2685 *** Projectile
2686 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2687   (use-package projectile
2688     :ensure t
2689     :init
2690     (setq projectile-enable-caching t)
2691     (setq projectile-switch-project-action (lambda ()
2692                                              (projectile-dired)
2693                                              (sd/project-switch-action)))
2694     (setq projectile-cache-file (concat sd-temp-directory "projectile.cache"))
2695     :config
2696     (add-to-list 'projectile-globally-ignored-files "GTAGS")
2697     (projectile-global-mode t))
2698
2699   (use-package persp-projectile
2700     :ensure t
2701     :config
2702     (persp-mode)
2703     :bind
2704     (:map projectile-mode-map
2705           ("s-t" . projectile-persp-switch-project)))
2706
2707   ;; change default-directory of scratch buffer to projectile-project-root 
2708   (defun sd/project-switch-action ()
2709     "Change default-directory of scratch buffer to current projectile-project-root directory"
2710     (interactive)
2711     (dolist (buffer (buffer-list))
2712       (if (string-match (concat "scratch.*" (projectile-project-name))
2713                         (buffer-name buffer))
2714           (let ((root (projectile-project-root)))
2715             (with-current-buffer buffer
2716               (cd root))))))
2717 #+END_SRC
2718
2719 *** project config =super= keybindings
2720 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2721   ;; (global-set-key (kbd "s-h") 'keyboard-quit)
2722   ;; (global-set-key (kbd "s-j") 'ido-switch-buffer)
2723   ;; (global-set-key (kbd "s-k") 'ido-find-file)
2724   ;; (global-set-key (kbd "s-l") 'sd/delete-current-window)
2725   ;; s-l  -->  goto-line
2726   ;; (global-set-key (kbd "s-/") 'swiper)
2727   ;; s-;  -->
2728   ;; s-'  -->  'next-multiframe-window
2729   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
2730
2731   (global-set-key (kbd "s-f") 'projectile-find-file)
2732   (global-set-key (kbd "s-`") 'mode-line-other-buffer)
2733
2734   (global-set-key (kbd "s-n") 'persp-next)
2735   (global-set-key (kbd "s-p") 'persp-prev)
2736   (global-set-key (kbd "s-;") 'persp-switch-last)
2737
2738   (global-set-key (kbd "s-=") 'text-scale-increase)
2739   (global-set-key (kbd "s--") 'text-scale-decrease)
2740
2741   ;; (global-set-key (kbd "s-u") 'undo-tree-visualize)
2742
2743
2744   ;; someothers default mapping on super (command) key
2745   ;; s-s save-buffer
2746   ;; s-k kill-this-buffer
2747
2748
2749   ;; s-h  -->  ns-do-hide-emacs
2750   ;; s-j  -->  ido-switch-buffer  +
2751   ;; s-k  -->  kill-this-buffer
2752   ;; s-l  -->  goto-line
2753   ;; s-;  -->  undefined
2754   ;; s-'  -->  next-multiframe-window
2755   ;; s-ret --> toggle-frame-fullscreen +
2756
2757   ;; s-y  -->  ns-paste-secondary
2758   ;; s-u  -->  revert-buffer
2759   ;; s-i  -->  undefined - but used for iterm globally
2760   ;; s-o  -->  used for emacs globally
2761   ;; s-p  -->  projectile-persp-switch-project  +  
2762   ;; s-[  -->  next-buffer  +    
2763   ;; s-]  -->  previous-buffer +
2764
2765   ;; s-0  -->  undefined
2766   ;; s-9  -->  undefined
2767   ;; s-8  -->  undefined
2768   ;; s-7  -->  undefined
2769   ;; s-6  -->  undefined
2770   ;; s--  -->  center-line
2771   ;; s-=  -->  undefined
2772
2773   ;; s-n  -->  make-frame
2774   ;; s-m  -->  iconify-frame
2775   ;; s-b  -->  undefined
2776   ;; s-,  -->  customize
2777   ;; s-.  -->  undefined
2778   ;; s-/  -->  undefined
2779
2780   ;; s-g  -->  isearch-repeat-forward
2781   ;; s-f  -->  projectile-find-file   +
2782   ;; s-d  -->  isearch-repeat-background
2783   ;; s-s  -->  save-buffer
2784   ;; s-a  -->  make-whole-buffer
2785
2786   ;; s-b  -->  undefined
2787   ;; s-v  -->  yank
2788   ;; s-c  -->  ns-copy-including-secondary
2789
2790   ;; s-t  -->  ns-popup-font-panel
2791   ;; s-r  -->  undefined
2792   ;; s-e  -->  isearch-yanqk-kill
2793   ;; s-w  -->  delete-frame
2794   ;; s-q  -->  same-buffers-kill-emacs
2795
2796   ;; s-`  -->  other-frame
2797 #+END_SRC
2798
2799 ** Windown & Buffer - =C-o=
2800 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
2801 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
2802 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2803   (winner-mode 1)
2804
2805   (defun sd/delete-current-window ()
2806     (interactive)
2807     (if (> (length (window-list)) 1)
2808         (delete-window)
2809       (message "Only one Windows now!")))
2810
2811   (defun sd/toggle-max-windows ()
2812     "Set maximize current if there are multiple windows, if only
2813   one window, window undo"
2814     (interactive)
2815     (if (equal  (length (window-list)) 1)
2816         (winner-undo)
2817       (delete-other-windows)))
2818
2819   (defhydra sd/hydra-window (:color red :columns nil)
2820     "Window"
2821     ;; windows switch
2822     ("h" windmove-left nil :exit t)
2823     ("j" windmove-down nil :exit t)
2824     ("k" windmove-up nil :exit t)
2825     ("l" windmove-right nil :exit t)
2826     ("C-o" other-window nil :exit t)
2827     ;; window resize
2828     ("H" hydra-move-splitter-left nil)
2829     ("J" hydra-move-splitter-down nil)
2830     ("K" hydra-move-splitter-up nil)
2831     ("L" hydra-move-splitter-right nil)
2832     ;; windows split
2833     ("v" (lambda ()
2834            (interactive)
2835            (split-window-right)
2836            (windmove-right))
2837      "vert" :exit t)
2838     ("x" (lambda ()
2839            (interactive)
2840            (split-window-below)
2841            (windmove-down))
2842      "horz" :exit t)
2843     ;; buffer / windows switch
2844     ("o" sd/toggle-max-windows "one" :exit t)
2845     ("C-k" sd/delete-current-window "del" :exit t)
2846     ("C-d" (lambda ()
2847              (interactive)
2848              (kill-buffer)
2849              (sd/delete-current-window))
2850      "kill" :exit t)
2851
2852     ;; ace-window
2853     ;; ("'" other-window "other" :exit t)
2854     ;; ("a" ace-window "ace")
2855     ("s" ace-swap-window "swap")
2856     ("D" ace-delete-window "ace-one" :exit t)
2857     ;; ("i" ace-maximize-window "ace-one" :exit t)
2858     ;; Windows undo - redo
2859     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) "undo")
2860     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) "redo")
2861
2862     ;; ibuffer, dired, eshell, bookmarks
2863     ;; ("C-i" other-window nil :exit t)
2864     ("C-b" ido-switch-buffer nil :exit t)
2865     ("C-f" projectile-find-file nil :exit t)
2866     ("C-p" persp-switch :exit t)
2867
2868     ;; other special buffers
2869     ("d" sd/project-or-dired-jump nil :exit t)
2870     ("b" ibuffer nil :exit t)
2871     ("t" multi-term nil :exit t)
2872     ("e" sd/toggle-project-eshell nil :exit t)
2873     ("m" bookmark-jump-other-window nil :exit t)
2874     ("M" bookmark-set nil :exit t)
2875     ("g" magit-status nil :exit t)
2876     ;; ("p" paradox-list-packages nil :exit t)
2877
2878     ;; quit
2879     ("q" nil "cancel")
2880     ("<ESC>" nil)
2881     ("C-h" windmove-left nil :exit t)
2882     ("C-j" windmove-down nil :exit t)
2883     ("C-k" windmove-up :exit t)
2884     ("C-l" windmove-right nil :exit t)
2885     ("C-;" nil nil :exit t)
2886     ("n" nil nil :exit t)
2887     ("[" nil nil :exit t)
2888     ("]" nil nil :exit t)
2889     ("f" nil))
2890
2891   (global-unset-key (kbd "C-o"))
2892   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
2893
2894   (defun sd/project-or-dired-jump ()
2895     "If under project, jump to the root directory, otherwise
2896   jump to dired of current file"
2897     (interactive)
2898     (if (projectile-project-p)
2899         (projectile-dired)
2900       (dired-jump)))
2901 #+END_SRC
2902
2903 ** Motion
2904 - =C-M-=
2905 [[https://www.masteringemacs.org/article/effective-editing-movement][effective-editing-movement]]
2906 *** Command Arguments, numeric argumens
2907 =C-u 4= same as =C-4=, =M-4=
2908 *** Basic movement
2909 moving by line / word / 
2910 =C-f=, =C-b=, =C-p=, =C-n=, =M-f=, =M-b=
2911 =C-a=, =C-e=
2912 =M-m= (move first non-whitespace on this line) 
2913 =M-}=, =M-{=, Move forward end of paragraph
2914 =M-a=, =M-e=,  beginning / end of sentence
2915 =C-M-a=, =C-M-e=, move begining of defun
2916 =C-x ]=, =C-x [=, forward/backward one page
2917 =C-v=, =M-v=, =C-M-v=, =C-M-S-v= scroll down/up
2918 =M-<=, =M->=, beginning/end of buffer
2919 =M-r=, Repositiong point
2920
2921 *** Moving by S-expression / List
2922 *** Marks
2923 =C-<SPC>= set marks toggle the region
2924 =C-u C-<SPC>= Jump to the mark, repeated calls go further back the mark ring
2925 =C-x C-x= Exchanges the point and mark.
2926
2927 Stolen [[https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode][fixing-mark-commands-transient-mark-mode]]
2928 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2929   (defun push-mark-no-activate ()
2930     "Pushes `point' to `mark-ring' and does not activate the region
2931      Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
2932     (interactive)
2933     (push-mark (point) t nil)
2934     (message "Pushed mark to ring"))
2935
2936   ;; (global-set-key (kbd "C-`") 'push-mark-no-activate)
2937
2938   (defun jump-to-mark ()
2939     "Jumps to the local mark, respecting the `mark-ring' order.
2940     This is the same as using \\[set-mark-command] with the prefix argument."
2941     (interactive)
2942     (set-mark-command 1))
2943
2944   ;; (global-set-key (kbd "M-`") 'jump-to-mark)
2945
2946   (defun exchange-point-and-mark-no-activate ()
2947     "Identical to \\[exchange-point-and-mark] but will not activate the region."
2948     (interactive)
2949     (exchange-point-and-mark)
2950     (deactivate-mark nil))
2951
2952   ;; (define-key global-map [remap exchange-point-and-mark] 'exchange-point-and-mark-no-activate)
2953 #+END_SRC
2954
2955 Show the mark ring using =helm-mark-ring=, also mapping =M-`= to quit minibuffer. so that =M-`= can 
2956 toggle the mark ring. the best way is add a new action and mapping to =helm-source-mark-ring=,  but 
2957 since there is no map such as =helm-mark-ring=map=, so I cannot binding a key to the quit action.
2958 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2959   (setq mark-ring-max 50)
2960
2961   (use-package helm
2962     :ensure t
2963     :init
2964     (global-set-key (kbd "M-`") #'helm-mark-ring))
2965
2966   (define-key minibuffer-local-map (kbd "M-`") 'keyboard-escape-quit)
2967 #+END_SRC
2968
2969 =M-h= marks the next paragraph
2970 =C-x h= marks the whole buffer
2971 =C-M-h= marks the next defun
2972 =C-x C-p= marks the next page
2973 *** Registers
2974 Registers can save text, position, rectangles, file and configuration and other things.
2975 Here for movement, we can use register to save/jump position
2976 =C-x r SPC= store point in register
2977 =C-x r j= jump to register
2978 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2979   (use-package list-register
2980     :ensure t)
2981 #+END_SRC
2982
2983 *** Bookmarks
2984 As I would like use bookmakr for different buffer/files. to help to swith
2985 different buffer/file quickly. this setting is in Windows/buffer node
2986 =C-x r m= set a bookmarks
2987 =C-x r l= list bookmarks
2988 =C-x r b= jump to bookmarks
2989
2990 *** Search
2991 Search, replace and hightlight will in later paragraph
2992 *** =Avy= for easy motion
2993 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2994   (use-package avy
2995     :ensure t
2996     :config
2997     (avy-setup-default))
2998
2999   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
3000   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
3001   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
3002   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
3003
3004   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
3005   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
3006
3007   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3008   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
3009   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
3010
3011   ;; ;; will delete above 
3012   ;; (global-set-key (kbd "M-g j") 'avy-goto-line-below)
3013   ;; (global-set-key (kbd "M-g k") 'avy-goto-line-above)
3014   ;; (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
3015   ;; (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
3016   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3017   ;; (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
3018   ;; (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
3019 #+END_SRC
3020
3021 *** =Imenu= goto tag
3022 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3023   (global-set-key (kbd "M-i") #'counsel-imenu)
3024   ;; (global-set-key (kbd "M-i") #'imenu)
3025
3026   ;; define M-[ as C-M-a
3027   ;; http://ergoemacs.org/emacs/emacs_key-translation-map.html
3028   (define-key key-translation-map (kbd "M-[") (kbd "C-M-a"))
3029   (define-key key-translation-map (kbd "M-]") (kbd "C-M-e"))
3030 #+END_SRC
3031
3032 *** Go-to line
3033 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3034   (global-set-key (kbd "M-l") 'goto-line)
3035 #+END_SRC
3036
3037 ** Edit
3038 *** basic editting
3039 - cut, yank, =C-w=, =C-y=
3040 - save, revert
3041 - undo, redo - undo-tree
3042 - select, expand-region
3043 - spell check, flyspell
3044
3045 *** Kill ring
3046 =helm-show-kill-ring=
3047 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3048   (setq kill-ring-max 100)                ; default is 60p
3049
3050   (use-package helm
3051     :ensure t
3052     :init
3053     (global-set-key (kbd "M-y") #'helm-show-kill-ring))
3054 #+END_SRC
3055
3056 *** undo-tree
3057 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3058   (use-package undo-tree
3059     :ensure t
3060     :config
3061     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
3062     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
3063     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
3064     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
3065     (global-undo-tree-mode 1))
3066
3067   (global-set-key (kbd "s-u") 'undo-tree-visualize)
3068 #+END_SRC
3069
3070 *** flyspell
3071 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
3072 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3073   (setenv "DICPATH" "/usr/local/share/hunspell")
3074
3075   (when (executable-find "hunspell")
3076     (setq-default ispell-program-name "hunspell")
3077     (setq ispell-really-hunspell t))
3078
3079   ;; (defun text-mode-hook-setup ()
3080   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
3081   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
3082   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
3083   ;; (add-hook 'text-mode-hook 'flyspell-mode)
3084
3085   ;; enable flyspell check on comments and strings in progmamming modes
3086   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
3087
3088   ;; I don't use the default mappings
3089   (with-eval-after-load 'flyspell
3090     (define-key flyspell-mode-map (kbd "C-;") nil)
3091     (define-key flyspell-mode-map (kbd "C-,") nil)
3092     (define-key flyspell-mode-map (kbd "C-.") nil))
3093 #+END_SRC
3094
3095 Make flyspell enabled for org-mode, see [[http://emacs.stackexchange.com/questions/9333/how-does-one-use-flyspell-in-org-buffers-without-flyspell-triggering-on-tangled][here]]
3096 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3097   ;; NO spell check for embedded snippets
3098   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
3099     (let ((rlt ad-return-value)
3100           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
3101           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
3102           old-flag
3103           b e)
3104       (when ad-return-value
3105         (save-excursion
3106           (setq old-flag case-fold-search)
3107           (setq case-fold-search t)
3108           (setq b (re-search-backward begin-regexp nil t))
3109           (if b (setq e (re-search-forward end-regexp nil t)))
3110           (setq case-fold-search old-flag))
3111         (if (and b e (< (point) e)) (setq rlt nil)))
3112       (setq ad-return-value rlt)))
3113 #+END_SRC
3114
3115 ** Search & Replace / hightlight =M-s=
3116 *** isearch
3117 =C-s=, =C-r=, 
3118 =C-w= add word at point to search string, 
3119 =M-%= query replace
3120 =C-M-y= add character at point to search string
3121 =M-s C-e= add reset of line at point
3122 =C-y= yank from clipboard to search string
3123 =M-n=, =M-p=, history
3124 =C-M-i= complete search string
3125 set the isearch history size, the default is only =16=
3126 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3127   (setq history-length 5000)
3128   (setq regexp-search-ring-max 1000)
3129   (setq search-ring-max 1000)
3130
3131   ;; when search a word or a symbol , also add the word into regexp-search-ring
3132   (defadvice isearch-update-ring (after sd/isearch-update-ring (string &optional regexp) activate)
3133     "Add search-ring to regexp-search-ring"
3134     (unless regexp
3135       (add-to-history 'regexp-search-ring string regexp-search-ring-max)))
3136 #+END_SRC
3137
3138 *** =M-s= prefix
3139 use the prefix =M-s= for searching in buffers
3140 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3141   (defun sd/make-keymap (key bindings)
3142     (setq keymap (make-sparse-keymap))
3143     (dolist (binding bindings)
3144       (define-key keymap (car binding) (cdr binding)))
3145     (global-set-key key keymap))
3146
3147   ;; (sd/make-keymap "\M-s"
3148   ;;                 '(("w" . save-buffer)
3149   ;;                   ;; ("\M-w" . save-buffer)
3150   ;;                   ("e" . revert-buffer)
3151   ;;                   ("s" . isearch-forward-regexp)
3152   ;;                   ("\M-s" . isearch-forward-regexp)
3153   ;;                   ("r" . isearch-backward-regexp)
3154   ;;                   ("." . isearch-forward-symbol-at-point)
3155   ;;                   ("o" . occur)
3156   ;;                   ;; ("h" . highlight-symbol-at-point)
3157   ;;                   ("h" . highlight-symbol)
3158   ;;                   ("m" . highlight-regexp)
3159   ;;                   ("l" . highlight-lines-matching-regexp)
3160   ;;                   ("M" . unhighlight-regexp)
3161   ;;                   ("f" . keyboard-quit)
3162   ;;                   ("q" . keyboard-quit)))
3163 #+END_SRC
3164
3165 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3166   (use-package highlight-symbol
3167     :ensure t)
3168
3169   (defhydra sd/search-replace (:color red :columns nil)
3170     "Search"
3171     ("w" save-buffer "save" :exit t)
3172     ("e" revert-buffer "revert" :exit t)
3173     ("u" undo-tree-visualize "undo" :exit t)
3174     ("s" isearch-forward-regexp "s-search" :exit t)
3175     ("M-s" isearch-forward-regexp "s-search" :exit t)
3176     ("r" isearch-backward-regexp "r-search" :exit t)
3177     ("." isearch-forward-symbol-at-point "search point" :exit t)
3178     ("/" swiper "swiper" :exit t)
3179     ("o" occur "occur" :exit t)
3180     ("h" highlight-symbol "higlight" :exit t)
3181     ("l" highlight-lines-matching-regexp "higlight line" :exit t)
3182     ("m" highlight-regexp "higlight" :exit t)
3183     ("M" unhighlight-regexp "unhiglight" :exit t)
3184     ("q" nil "quit")
3185     ("f" nil))
3186
3187   (global-unset-key (kbd "M-s"))
3188   (global-set-key (kbd "M-s") 'sd/search-replace/body)
3189
3190
3191   ;; search and replace and highlight
3192   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
3193   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
3194   (global-set-key (kbd "s-[") 'highlight-symbol-next)
3195   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
3196   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
3197 #+END_SRC
3198
3199 *** Occur
3200 Occur search key bindings
3201 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3202   (defun sd/occur-keys ()
3203     "My key bindings in occur-mode"
3204     (interactive)
3205     (switch-to-buffer-other-window "*Occur*")
3206     (define-key occur-mode-map (kbd "C-o") nil)
3207     (define-key occur-mode-map (kbd "C-n") (lambda ()
3208                                              (interactive)
3209                                              (occur-next)
3210                                              (occur-mode-goto-occurrence-other-window)
3211                                              (recenter)
3212                                              (other-window 1)))
3213     (define-key occur-mode-map (kbd "C-p") (lambda ()
3214                                              (interactive)
3215                                              (occur-prev)
3216                                              (occur-mode-goto-occurrence-other-window)
3217                                              (recenter)
3218                                              (other-window 1))))
3219
3220   (add-hook 'occur-hook #'sd/occur-keys)
3221
3222   (use-package color-moccur
3223     :ensure t
3224     :commands (isearch-moccur isearch-all)
3225     :init
3226     (setq isearch-lazy-highlight t)
3227     :config
3228     (use-package moccur-edit))
3229 #+END_SRC
3230
3231 *** Swiper
3232 stolen from [[https://github.com/mariolong/emacs.d/blob/f6a061594ef1b5d1f4750e9dad9dc97d6e122840/emacs-init.org][here]]
3233 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3234   (use-package swiper
3235     :ensure t
3236     :init
3237     (setq ivy-use-virtual-buffers t)
3238     (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
3239     :config
3240     (ivy-mode)
3241     (global-set-key (kbd "s-/") 'swiper)
3242     (define-key swiper-map (kbd "M-r") 'swiper-query-replace)
3243     (define-key swiper-map (kbd "C-.") (lambda ()
3244                                          (interactive)
3245                                          (insert (format "%s" (with-ivy-window (thing-at-point 'word))))))
3246     (define-key swiper-map (kbd "M-.") (lambda ()
3247                                          (interactive)
3248                                          (insert (format "%s" (with-ivy-window (thing-at-point 'symbol)))))))
3249 #+END_SRC
3250
3251 ** Expand region map
3252 *** Install =expand-region=
3253 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3254   (use-package expand-region
3255     :ensure t
3256     :config
3257     ;; (global-set-key (kbd "C-=") 'er/expand-region)
3258     )
3259 #+END_SRC
3260
3261 *** Add a =hydra= map for =expand-region= operations
3262 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3263   (defun sd/mark-line ()
3264     "Mark current line without whitespace beginning"
3265     (interactive)
3266     (back-to-indentation)
3267     (set-mark (line-end-position)))
3268
3269   (defhydra sd/expand-selected (:color red :columns nil
3270                                        :post (deactivate-mark)
3271                                        )
3272     "Selected"
3273     ;; select
3274     ;; ("e"  er/expand-region "+")
3275     ("SPC" er/expand-region "+")
3276     ;; ("c"  er/contract-region "-")
3277     ("S-SPC" er/contract-region "-")
3278     ("r" (lambda ()
3279            (interactive)
3280            (er/contract-region 0))
3281      "reset")
3282
3283     ("i'" er/mark-inside-quotes "in")
3284     ("i\"" er/mark-inside-quotes nil)
3285     ("o'" er/mark-outside-quotes "out")
3286     ("o\"" er/mark-outside-quotes nil)
3287
3288     ("i{" er/mark-inside-pairs nil)
3289     ("i(" er/mark-inside-pairs nil)
3290     ("o{" er/mark-inside-pairs nil)
3291     ("o(" er/mark-inside-pairs nil)
3292
3293     ("p" er/mark-paragraph "paragraph")
3294
3295     ("l" sd/mark-line "line")
3296     ("u" er/mark-url "url")
3297     ("f" er/mark-defun "fun")
3298     ("n" er/mark-next-accessor "next")
3299
3300     ("x" exchange-point-and-mark "exchange")
3301
3302     ;; Search
3303     ;; higlight
3304
3305     ;; exit
3306     ("d" kill-region "delete" :exit t)
3307
3308     ("y" kill-ring-save "yank" :exit t)
3309     ("M-SPC" nil "quit" :exit t)
3310     ;; ("C-SPC" "quit" :exit t)
3311     ("q" deactivate-mark "quit" :exit t))
3312
3313   (global-set-key (kbd "M-SPC") (lambda ()
3314                                   (interactive)
3315                                   (set-mark-command nil)
3316                                   ;; (er/expand-region 1)
3317                                   (er/mark-word)
3318                                   (sd/expand-selected/body)))
3319 #+END_SRC
3320
3321 *** TODO make expand-region hydra work with lispy selected
3322 ** =C-w= delete backward word
3323 Refer [[https://github.com/fnwiya/dotfiles/blob/c9ca79f1b22c919d9f4c3a0f944ba8281255a594/setup/.emacs.d/loader-init/_90-kill-region-or-backward-kill-word.el][kill-region-or-backward-kill-word]]
3324
3325 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3326   (defun sd/kill-region-or-backward-kill-word ()
3327     (interactive)
3328     (if (region-active-p)
3329         (kill-region (point) (mark))
3330       (backward-kill-word 1)))
3331
3332   (global-set-key (kbd "C-w") 'sd/kill-region-or-backward-kill-word)
3333 #+END_SRC
3334
3335 * TODO todolist
3336 ** rucket
3337 ** player video on iphone for 
3338 ** SICP
3339 ** music searcher
3340 search music on some music web site
3341 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3342   ;; (create-fontset-from-fontset-spec
3343   ;;  "-*-Source Code Pro-normal-normal-normal-*-12-*-*-*-*-*-fontset-osaka12")
3344   ;; (create-fontset-from-fontset-spec
3345   ;;  "-*-Source Code Pro-normal-normal-normal-*-12-*-*-*-*-*-fontset-osaka13")
3346
3347   ;; (create-fontset-from-fontset-spec
3348   ;;     "-*-consolas-*-*-*-*-12-*-*-*-*-*-fontset-consolas,
3349   ;;     ascii:-*-consolas-*-*-*-*-12-*-*-*-*-*-iso8859-1,
3350   ;;     latin-iso8859-1:-*-consolas-*-*-*-*-12-*-*-*-*-*-iso8859-1,
3351   ;;     latin-iso8859-15:-*-consolas-*-*-*-*-12-*-*-*-*-*-iso8859-15")
3352
3353   ;; (set-fontset-font
3354   ;;  "fontset-default" nil
3355   ;;  "-*-stheiti-*-*-*-*-14-*-*-*-*-*-gb2312.1980-*" nil 'prepend)
3356   ;; (set-fontset-font
3357   ;;  "fontset-osaka12" 'kana
3358   ;;  "-*-stheiti-*-*-*-*-14-*-*-*-*-*-gbk-0" nil 'prepend)
3359   ;; (set-fontset-font
3360   ;;  "fontset-osaka12" 'han
3361   ;;  "-*-stheiti-*-*-*-*-14-*-*-*-*-*-gbk-0" nil 'prepend)
3362   ;; (set-fontset-font
3363   ;;  "fontset-osaka12" 'cjk-misc
3364   ;;  "-*-stheiti-*-*-*-*-14-*-*-*-*-*-gbk-0" nil 'prepend)
3365
3366   (set-face-attribute 'variable-pitch nil :font "Calibri" :height 160)
3367   (set-face-attribute 'fixed-pitch nil :font "Source Code Pro" :height 120)
3368
3369   (add-hook 'text-mode-hook 'variable-pitch-mode)
3370
3371   (with-eval-after-load "org"
3372     (set-face-attribute 'org-code nil :inherit 'fixed-pitch)
3373     (set-face-attribute 'org-block nil :inherit 'fixed-pitch)
3374     (set-face-attribute 'org-table nil :family "Ubuntu Mono" :height 120)
3375     (set-face-attribute 'org-block-background nil :inherit 'fixed-pitch)
3376     ;; fix indent broken by variable-pitch-mode
3377     ;; http://emacs.stackexchange.com/questions/26864/variable-pitch-face-breaking-indentation-in-org-mode
3378     (require 'org-indent)
3379     (set-face-attribute 'org-indent nil :inherit '(org-hide fixed-pitch)))
3380 #+END_SRC
3381
3382