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