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