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