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