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