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