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