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