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