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