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