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