Fix two scroll auto recenter
[dotfiles.git] / emacs.d / config.org
1 #+TITLE: Emacs Configuration file
2 #+AUTHOR: Peng Li
3 #+EMAIL: seudut@gmail.com
4
5 * Introduction
6
7 Most config are just copied from [[https://github.com/howardabrams/dot-files][howardabrams]]'s and [[https://github.com/abo-abo/oremacs][abo-abo's]] dotfiles
8
9 * Basic Settings
10 ** Setting loading Path
11 Set system PATH and emacs exec path
12 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
13   (setenv "PATH" (concat (getenv "PATH")
14                          ":" "/usr/local/bin"
15                          ":" "/Library/TeX/texbin"))
16   (setq exec-path (append exec-path '("/usr/local/bin")))
17   (setq exec-path (append exec-path '("/Library/TeX/texbin/")))
18 #+END_SRC
19
20 ** Package Initialization
21 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
22   (require 'package)
23
24   (setq package-archives '(("mepla" . "http://melpa.milkbox.net/packages/")
25                            ("gnu" . "http://elpa.gnu.org/packages/")
26                            ("org" . "http://orgmode.org/elpa/")))
27
28   (package-initialize)
29 #+END_SRC       
30
31 ** My constant
32 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
33   (defconst my-name "Peng Li")
34   (defconst my-email "seudut@gmail.com")
35 #+END_SRC
36
37 ** General Setting
38 *** scroll bar, tool-bar and menu-bar
39 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
40   (if (display-graphic-p)
41       (progn
42         (scroll-bar-mode 0)
43         (tool-bar-mode 0)
44         (menu-bar-mode 1))
45     (menu-bar-mode 0))
46
47   (setq debug-on-error t)
48   (setq inhibit-startup-message t)
49
50   (defalias 'yes-or-no-p 'y-or-n-p)
51   (show-paren-mode 1)
52   ;; don't backupf
53   (setq make-backup-files nil)
54
55   ;;supress the redefined warning at startup
56   (setq ad-redefinition-action 'accept)
57
58   (setq scroll-step 1)
59   (setq scroll-margin 5)
60 #+END_SRC
61
62 *** Custom file 
63 #+BEGIN_SRC emacs-lisp :tangle yes :results silent 
64   (setq custom-file "~/.emacs.d/custom.el")
65   (if (file-exists-p custom-file)
66       (load custom-file))
67 #+END_SRC
68
69 *** Switch the focus to help window when it appears
70 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
71   (setq help-window-select t)
72 #+END_SRC
73
74 *** Set default window size
75 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
76   (setq initial-frame-alist
77         '((width . 120)
78           (height . 50)))
79
80   ;; (setq-default indicate-empty-lines t)
81 #+END_SRC
82
83 *** Stop auto save
84 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
85   (setq auto-save-default nil)
86
87   ;; restore last session
88   ;; (desktop-save-mode t)
89 #+END_SRC
90
91 *** temp folder
92 Make a temp directory for all cache/history files
93 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
94   (defconst sd-temp-directory
95     (file-name-as-directory "~/.emacs.d/temp"))
96
97   (unless (file-exists-p sd-temp-directory)
98     (mkdir sd-temp-directory))
99 #+END_SRC
100
101 *** Save minibuffer history
102 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
103   (setq savehist-file (concat sd-temp-directory "history"))
104   (setq history-length 1000)
105   (setq savehist-additional-variables '(kill-ring search-ring regexp-search-ring))
106   (savehist-mode 1)
107
108   ;; set temp file path for recentf and auto-save
109   (setq recentf-save-file (concat sd-temp-directory "recentf"))
110   (setq auto-save-list-file-prefix (concat sd-temp-directory "auto-save-list/.saves-"))
111 #+END_SRC
112
113 *** Max file size
114 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
115   (setq large-file-warning-threshold nil)
116 #+END_SRC
117
118 * Package Management Tools
119 ** Use-package
120 Using [[https://github.com/jwiegley/use-package][use-package]] to manage emacs packages
121 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
122   (unless (package-installed-p 'use-package)
123     (package-refresh-contents)
124     (package-install 'use-package))
125
126   (require 'use-package)
127 #+END_SRC
128
129 ** El-get
130 [[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. 
131 Check out [[http://tapoueh.org/emacs/el-get.html][el-get]].
132 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
133   (use-package el-get
134     :ensure t
135     :init
136     (add-to-list 'load-path "~/.emacs.d/el-get"))
137 #+END_SRC
138
139 ** paradox
140 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
141   (use-package paradox
142     :ensure t)
143 #+END_SRC
144
145 * Color and Fonts Settings
146 ** highlight current line
147 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
148   ;; (global-hl-line-mode)
149   ;; don't want high light current line in eshell/term mode
150   (add-hook 'prog-mode-hook 'hl-line-mode)
151   (add-hook 'text-mode-hook 'hl-line-mode)
152   (add-hook 'dired-mode-hook 'hl-line-mode)
153
154   ;; only highlight selected window
155   (setq hl-line-sticky-flag nil)
156
157   (setq-default fill-column 120)
158   (add-hook 'text-mode-hook 'turn-on-auto-fill)
159 #+END_SRC
160
161 ** Smart Comments
162 [[https://github.com/paldepind/smart-comment][smart-comments]]
163 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
164   (use-package smart-comment
165     :ensure t
166     :bind ("M-;" . smart-conmment))
167 #+END_SRC
168
169 ** Font Setting
170 *** syntax highlighting
171 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
172   (global-font-lock-mode 1)
173 #+END_SRC
174
175 *** [[https://github.com/i-tu/Hasklig][Hasklig]] and Source Code Pro, defined fonts family
176 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
177   (if window-system
178       (defvar sd/fixed-font-family
179         (cond ((x-list-fonts "Hasklig")         "Hasklig")
180               ((x-list-fonts "Source Code Pro") "Source Code Pro:weight") ;; weigth=light
181               ((x-list-fonts "Anonymous Pro")   "Anonymous Pro")
182               ((x-list-fonts "M+ 1mn")          "M+ 1mn"))
183         "The fixed width font based on what is installed, `nil' if not defined."))
184 #+END_SRC
185
186 Setting the fonts alignment issue
187 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
188   (if window-system
189       (when sd/fixed-font-family
190         (set-frame-font sd/fixed-font-family)
191         (set-face-attribute 'default nil :font sd/fixed-font-family :height 140)
192         (set-face-font 'default sd/fixed-font-family)))
193 #+END_SRC
194
195 *** Chinese fonts
196 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 表格內中英文對齊的問題]]
197 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
198   (defvar emacs-english-font "Source Code Pro" "The font name of English.")
199
200   (defvar emacs-cjk-font "STHeiti" "The font name for CJK.")
201
202   (defvar emacs-font-size-pair '(13 . 16) "Default font size pair for (english . chinese)")
203
204   (defvar emacs-font-size-pair-list
205     '(( 5 .  6) (10 . 12)
206       (11 . 14) (12 . 14)
207       (13 . 16) (14 . 16) (15 . 18) (16 . 20) (17 . 20)
208       (18 . 22) (19 . 22) (20 . 24) (21 . 26)
209       (24 . 28) (26 . 32) (28 . 34)
210       (30 . 36) (34 . 40) (36 . 44))
211     "This list is used to store matching (englis . chinese) font-size.")
212
213   (defun font-exist-p (fontname)
214     "Test if this font is exist or not."
215     (if (or (not fontname) (string= fontname ""))
216         nil
217       (if (not (x-list-fonts fontname)) nil t)))
218
219   (defun set-font (english chinese size-pair)
220     "Setup emacs English and Chinese font on x window-system."
221     (if (font-exist-p english)
222         (set-frame-font (format "%s:pixelsize=%d" english (car size-pair)) t))
223     (if (font-exist-p chinese)
224         (dolist (charset '(han cjk-misc) ;; '(kana han symbol cjk-misc bopomofo)
225                  )
226           (set-fontset-font (frame-parameter nil 'font) charset
227                             (font-spec :family chinese :size (cdr size-pair))))))
228
229   (defun emacs-step-font-size (step)
230     "Increase/Decrease emacs's font size."
231     (let ((scale-steps emacs-font-size-pair-list))
232       (if (< step 0) (setq scale-steps (reverse scale-steps)))
233       (setq emacs-font-size-pair
234             (or (cadr (member emacs-font-size-pair scale-steps))
235                 emacs-font-size-pair))
236       (when emacs-font-size-pair
237         (message "emacs font size set to %.1f" (car emacs-font-size-pair))
238         (set-font emacs-english-font emacs-cjk-font emacs-font-size-pair))))
239
240   (defun increase-emacs-font-size ()
241     "Decrease emacs's font-size acording emacs-font-size-pair-list."
242     (interactive) (emacs-step-font-size 1))
243
244   (defun decrease-emacs-font-size ()
245     "Increase emacs's font-size acording emacs-font-size-pair-list."
246     (interactive) (emacs-step-font-size -1))
247 #+END_SRC
248
249
250 ** Color Theme
251
252 Loading theme should be after all required loaded, refere [[https://github.com/jwiegley/use-package][:defer]] in =use-package=
253
254 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
255   (setq vc-follow-symlinks t)
256   (use-package molokai-theme
257     :ensure t)
258
259   (use-package color-theme
260     :ensure t
261     :init (require 'color-theme)
262     :config (use-package color-theme-sanityinc-tomorrow
263               :ensure t
264               :no-require t
265               :config
266               ;; (load-theme 'sanityinc-tomorrow-bright t)
267               (load-theme 'molokai t)
268               ))
269
270   ;(eval-after-load 'color-theme
271   ;  (load-theme 'sanityinc-tomorrow-bright t))
272
273 #+END_SRC
274
275 Change the Org-mode colors 
276
277 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
278
279   (defun org-src-color-blocks-light ()
280     "Colors the block headers and footers to make them stand out more for lighter themes"
281     (interactive)
282     (custom-set-faces
283      '(org-block-begin-line
284       ((t (:underline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
285      '(org-block-background
286        ((t (:background "#FFFFEA"))))
287      '(org-block
288        ((t (:background "#FFFFEA"))))
289      '(org-block-end-line
290        ((t (:overline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
291
292      '(mode-line-buffer-id ((t (:foreground "#005000" :bold t))))
293      '(which-func ((t (:foreground "#008000"))))))
294
295   (defun org-src-color-blocks-dark ()
296     "Colors the block headers and footers to make them stand out more for dark themes"
297     (interactive)
298     (custom-set-faces
299      '(org-block-begin-line
300        ((t (:foreground "#008ED1" :background "#002E41"))))
301      '(org-block-background
302        ((t (:background "#000000"))))
303      '(org-block
304        ((t (:background "#000000"))))
305      '(org-block-end-line
306        ((t (:foreground "#008ED1" :background "#002E41"))))
307
308      '(mode-line-buffer-id ((t (:foreground "black" :bold t))))
309      '(which-func ((t (:foreground "green"))))))
310
311   (org-src-color-blocks-dark)
312
313 #+END_SRC
314
315 improve color for org-mode
316 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
317   (deftheme ha/org-theme "Sub-theme to beautify org mode")
318
319   (if window-system
320       (defvar sd/variable-font-tuple
321         (cond ((x-list-fonts "Source Sans Pro") '(:font "Source Sans Pro"))
322               ((x-list-fonts "Lucida Grande")   '(:font "Lucida Grande"))
323               ((x-list-fonts "Verdana")         '(:font "Verdana"))
324               ((x-family-fonts "Sans Serif")    '(:family "Sans Serif"))
325               (nil (warn "Cannot find a Sans Serif Font.  Install Source Sans Pro.")))
326         "My variable width font available to org-mode files and whatnot."))
327
328   (defun sd/org-color ()
329     (let* ((sd/fixed-font-tuple (list :font sd/fixed-font-family))
330            (base-font-color     (face-foreground 'default nil 'default))
331            (background-color    (face-background 'default nil 'default))
332            (primary-color       (face-foreground 'mode-line nil))
333            (secondary-color     (face-background 'secondary-selection nil 'region))
334            (base-height         (face-attribute 'default :height))
335            (headline           `(:inherit default :weight bold :foreground ,base-font-color)))
336       (custom-theme-set-faces 'ha/org-theme
337                               `(org-agenda-structure ((t (:inherit default :height 2.0 :underline nil))))
338                               `(org-verbatim ((t (:inherit 'fixed-pitched :foreground "#aef"))))
339                               `(org-table ((t (:inherit 'fixed-pitched))))
340                               `(org-block ((t (:inherit 'fixed-pitched))))
341                               `(org-block-background ((t (:inherit 'fixed-pitched))))
342                               `(org-block-begin-line ((t (:inherit 'fixed-pitched))))
343                               `(org-block-end-line ((t (:inherit 'fixed-pitched))))
344                               `(org-level-8 ((t (,@headline ,@sd/variable-font-tuple))))
345                               `(org-level-7 ((t (,@headline ,@sd/variable-font-tuple))))
346                               `(org-level-6 ((t (,@headline ,@sd/variable-font-tuple))))
347                               `(org-level-5 ((t (,@headline ,@sd/variable-font-tuple))))
348                               `(org-level-4 ((t (,@headline ,@sd/variable-font-tuple
349                                                             :height ,(round (* 1.1 base-height))))))
350                               `(org-level-3 ((t (,@headline ,@sd/variable-font-tuple
351                                                             :height ,(round (* 1.25 base-height))))))
352                               `(org-level-2 ((t (,@headline ,@sd/variable-font-tuple
353                                                             :height ,(round (* 1.5 base-height))))))
354                               `(org-level-1 ((t (,@headline ,@sd/variable-font-tuple
355                                                             :height ,(round (* 1.75 base-height))))))
356                               `(org-document-title ((t (,@headline ,@sd/variable-font-tuple :height 1.5 :underline nil)))))))
357
358
359 #+END_SRC
360
361 ** Rainbow-delimiter
362
363 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
364
365   (use-package rainbow-delimiters
366     :ensure t
367     :init
368     (add-hook 'prog-mode-hook #'rainbow-delimiters-mode))
369
370 #+END_SRC
371
372 ** page-break-lines
373 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
374   (use-package page-break-lines
375     :ensure t
376     :config
377     (global-page-break-lines-mode)
378     ;; (turn-on-page-break-lines-mode)
379     )
380 #+END_SRC
381
382 ** rainbow-mode
383
384 Enable rainbow mode in emacs lisp mode
385
386 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
387   (use-package rainbow-mode
388     :ensure t
389   ;  :init
390   ;  (add-hook emacs-lisp-mode-hook 'rainbow-mode)
391     )
392
393 #+END_SRC
394
395 ** cusor color
396 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
397   (if (display-graphic-p)
398       (set-cursor-color 'red))
399 #+END_SRC
400
401 * Mode-line
402 ** clean mode line
403 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]]
404 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
405   (defvar mode-line-cleaner-alist
406     `((auto-complete-mode . " α")
407       (paredit-mode . " π")
408       (eldoc-mode . "")
409       (abbrev-mode . "")
410       (projectile-mode . "")
411       (ivy-mode . "")
412       (undo-tree-mode . "")
413       ;; default is WK
414       (which-key-mode . "")
415       ;; default is SP
416       (smartparens-mode . "")
417       ;; default is LR
418       (linum-relative-mode . "")
419       ;; default is ARev
420       (auto-revert-mode . "")
421       ;; default is Ind
422       (org-indent-mode . "")
423       ;; default is  Fly
424       (flyspell-mode . "")
425       (irony-mode . "")
426       (page-break-lines-mode . "")
427       (yas-minor-mode . "y")
428       ;; default jj
429       (evil-escape-mode . "")
430       ;; Major modes
431       (lisp-interaction-mode . "λ")
432       (hi-lock-mode . "")
433       (python-mode . "Py")
434       (emacs-lisp-mode . "EL")
435       (eshell-mode . "𝞔")
436       (dired-mode . "𝞓")
437       (ibuffer-mode . "𝞑")
438       (org-mode . "𝞞")
439       (nxhtml-mode . "nx"))
440     "Alist for `clean-mode-line'.
441
442   When you add a new element to the alist, keep in mind that you
443   must pass the correct minor/major mode symbol and a string you
444   want to use in the modeline *in lieu of* the original.")
445
446
447   (defun clean-mode-line ()
448     (interactive)
449     (loop for cleaner in mode-line-cleaner-alist
450           do (let* ((mode (car cleaner))
451                    (mode-str (cdr cleaner))
452                    (old-mode-str (cdr (assq mode minor-mode-alist))))
453                (when old-mode-str
454                    (setcar old-mode-str mode-str))
455                  ;; major mode
456                (when (eq mode major-mode)
457                  (setq mode-name mode-str)))))
458
459
460   (add-hook 'after-change-major-mode-hook 'clean-mode-line)
461 #+END_SRC
462
463 ** Powerline mode
464 Install powerline mode [[https://github.com/milkypostman/powerline][powerline]]
465 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
466   (use-package powerline
467     :ensure t
468     :config
469     ;; (powerline-center-theme)
470     )
471
472   ;; (use-package smart-mode-line
473   ;;   :ensure t)
474   ;; (use-package smart-mode-line-powerline-theme
475   ;;   :ensure t)
476 #+END_SRC
477
478 Revised powerline-center-theme
479 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
480   (defun sd/powerline-simpler-vc (s)
481     (if s
482         (replace-regexp-in-string "Git[:-]" "" s)
483       s))
484
485   (defface sd/powerline-active1 '((t (:background "yellow" :foreground "black" :inherit mode-line)))
486     "My Powerline face 1 based on powerline-active1."
487     :group 'powerline)
488
489   (defface sd/buffer-modified-active1 '((t (:background "red" :foreground "black" :inherit mode-line)))
490     "My Powerline face 1 based on powerline-active1."
491     :group 'powerline)
492
493   (defface sd/buffer-view-active1 '((t (:background "green" :foreground "black" :inherit mode-line)))
494     "My Powerline face 1 based on powerline-active1."
495     :group 'powerline)
496
497   (defface sd/mode-line-buffer-id
498     '((t (:background "yellow" :foreground "black" :inherit mode-line-buffer-id)))
499     "My powerline mode-line face, based on mode-line-buffer-id"
500     :group 'powerline)
501
502   ;; Don't show buffer modified for scratch and eshell mode
503   (defun sd/buffer-is-eshel-or-scratch ()
504     "Dot not show modified indicator for buffers"
505     (interactive)
506     (unless (or (string-match "*scratch*" (buffer-name))
507                 (equal major-mode 'eshell-mode))
508       t))
509
510   (defun sd/powerline-center-theme_revised ()
511     "Setup a mode-line with major and minor modes centered."
512     (interactive)
513     (setq-default mode-line-format
514                   '("%e"
515                     (:eval
516                      (let* ((active (powerline-selected-window-active))
517                             ;; (mode-line-buffer-id (if active 'sd/mode-line-buffer-id 'mode-line-buffer-id-inactive))
518                             (mode-line-buffer-id (if active 'sd/mode-line-buffer-id 'powerline-inactive1))
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                                           (powerline-raw (when  (and (boundp 'evil-mode)  evil-mode) evil-mode-line-tag) face2)
554                                           (when (and (boundp 'erc-track-minor-mode) erc-track-minor-mode)
555                                             (powerline-raw erc-modified-channels-object face2 'l))
556                                           (powerline-major-mode face2 'l)
557                                           (powerline-process face2)
558                                           (powerline-raw " :" face2)
559                                           (powerline-minor-modes face2 'l)
560                                           (powerline-raw " " face2)
561                                           (funcall separator-right face2 face1))))
562                        (concat (powerline-render lhs)
563                                (powerline-fill-center face1 (/ (powerline-width center) 2.0))
564                                (powerline-render center)
565                                (powerline-fill face1 (powerline-width rhs))
566                                (powerline-render rhs)))))))
567
568   (sd/powerline-center-theme_revised)
569 #+END_SRC
570
571 Fix the issue in mode line when showing triangle 
572 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
573   (setq ns-use-srgb-colorspace nil)
574 #+END_SRC
575
576 set height in mode line
577 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
578   (defconst sd/mode-line-font-heigh 100
579     "Defaulet the fontsize on mode line.")
580
581   (with-eval-after-load "powerline"
582     (when (display-graphic-p)
583       (set-face-attribute 'mode-line-inactive nil :height sd/mode-line-font-heigh)
584       (set-face-attribute 'mode-line nil :height sd/mode-line-font-heigh)
585       (let* ((base-font-size (face-attribute 'default :height)))
586         ;; 100/140;0.8
587         (set-variable 'powerline-height (/ base-font-size 10))
588         (set-variable 'powerline-text-scale-factor (/ (float sd/mode-line-font-heigh) base-font-size)))))
589 #+END_SRC
590
591 * IDO & SMEX
592 ** IDO
593 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
594   (use-package ido
595     :ensure t
596     :init (setq ido-enable-flex-matching nil
597                 ido-ignore-extensions t
598                 ido-use-virtual-buffers t
599                 ido-everywhere t)
600     (setq ido-save-directory-list-file (concat sd-temp-directory "ido.last"))
601     :config
602     (ido-mode 1)
603     (ido-everywhere 1)
604     (add-to-list 'completion-ignored-extensions ".pyc"))
605
606   (icomplete-mode t)
607 #+END_SRC
608
609 ** FLX
610 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
611   (use-package flx-ido
612     :ensure t
613     :init (setq ido-enable-flex-matching nil
614                 ido-use-faces nil)
615     :config (flx-ido-mode nil))
616 #+END_SRC
617
618 ** IDO-vertically
619 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
620   (use-package ido-vertical-mode
621     :ensure t
622     :init
623     (setq ido-vertical-define-keys 'C-n-C-p-up-and-down)
624     :config
625     (ido-vertical-mode 1))
626 #+END_SRC
627
628 ** SMEX
629 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
630   (use-package smex
631     :ensure t
632     :init
633     (setq smex-save-file (concat sd-temp-directory "smex-items"))
634     (smex-initialize)
635     :bind
636     ("M-x" . smex)
637     ("M-X" . smex-major-mode-commands))
638 #+END_SRC
639
640 ** Ido-ubiquitous
641 Use [[https://github.com/DarwinAwardWinner/ido-ubiquitous][ido-ubiquitous]] for ido everywhere. It makes =describe-function= can also use ido
642 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
643   (use-package ido-ubiquitous
644     :ensure t
645     :init
646     (setq magit-completing-read-function 'magit-ido-completing-read)
647     (setq gnus-completing-read-function 'gnus-ido-completing-read)
648     :config
649     (ido-ubiquitous-mode 1))
650 #+END_SRC
651
652 ** Ido-exit-target
653 [[https://github.com/waymondo/ido-exit-target][ido-exit-target]] let you open file/buffer on =other-windows= when call =ido-switch-buffer=
654 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
655   (use-package ido-exit-target
656     :ensure t
657     :init
658     (mapcar #'(lambda (map)
659               (define-key map (kbd "C-j") #'ido-exit-target-other-window)
660               (define-key map (kbd "C-k") #'ido-exit-target-split-window-below))
661             (list ido-buffer-completion-map
662                   ;; ido-common-completion-map
663                   ido-file-completion-map
664                   ido-file-dir-completion-map)))
665 #+END_SRC
666
667 ** Counsel
668 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
669   (use-package counsel
670     :ensure t
671     :defer t
672     :init
673     (global-set-key (kbd "M-x") 'counsel-M-x)
674     (global-set-key (kbd "C-h f") 'counsel-describe-function)
675     (global-set-key (kbd "C-h v") 'counsel-describe-variable)
676     ;; (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
677     (define-key read-expression-map (kbd "C-r") 'counsel-expression-history)
678     (global-set-key (kbd "C-c C-r") 'ivy-resume))
679 #+END_SRC
680
681 ** helm
682 let helm windows split inside current window
683 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
684   (with-eval-after-load 'helm
685     (setq helm-split-window-in-side-p t))
686 #+END_SRC
687
688 * Org-mode Settings
689 ** Org-mode Basic setting
690 Always indents header, and hide header leading starts so that no need type =#+STATUP: indent= 
691 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
692   (use-package org
693     :ensure t
694     :init
695     (setq org-startup-indented t)
696     (setq org-hide-leading-starts t)
697     (setq org-src-fontify-natively t)
698     (setq org-src-tab-acts-natively t)
699     (setq org-confirm-babel-evaluate nil)
700     (setq org-use-speed-commands t)
701     (setq org-completion-use-ido t)
702     (setq org-startup-with-inline-images t)
703     ;; latex preview
704     ;; (setq org-startup-with-latex-preview t)
705     ;; (setq org-format-latex-options (plist-put org-format-latex-options :scale 1.2))
706     (require 'org-habit)
707     (add-to-list 'org-modules 'org-habit)
708     (setq org-habit-graph-column 50)
709     (setq org-hide-emphasis-markers t)
710     (setq org-html-validation-link nil)
711     ;; open link when return clicked
712     (setq org-return-follows-link t)
713     ;; open the ppt file by external open instead of emacs
714     (add-to-list 'org-file-apps '("\\.pptx" . "open %s"))
715     (add-to-list 'org-file-apps '("\\.doc" . "open %s"))
716     (setq org-image-actual-width nil))
717 #+END_SRC
718
719
720 ** Org babel
721 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
722   (el-get-bundle hasu/emacs-ob-racket
723     :features ob-racket)
724
725   ;; Lua support
726   ;(use-package ob-lua
727   ;  :ensure t)
728
729   ;; use current window for org source buffer editting
730
731   (setq org-src-window-setup 'current-window )
732   (define-key org-mode-map (kbd "C-'") nil)
733   ;; C-M-i is mapped to imenu globally
734   (define-key org-mode-map (kbd "C-M-i") nil)
735   ;; set the ditta.jar path
736
737   (setq org-ditaa-jar-path "/usr/local/Cellar/ditaa/0.9/libexec/ditaa0_9.jar")
738   (unless 
739       (file-exists-p org-ditaa-jar-path)
740     (warn "seudut: ditaa.jar not found at %s " org-ditaa-jar-path))
741
742   (org-babel-do-load-languages 'org-babel-load-languages
743                                '((python . t)
744                                  (C . t)
745                                  (perl . t)
746                                  (calc . t)
747                                  (latex . t)
748                                  (java . t)
749                                  (ruby . t)
750   ;                               (lua . t)
751                                  (lisp . t)
752                                  (scheme . t)
753                                  (racket . t)
754                                  (sh . t)
755                                  (sqlite . t)
756                                  (js . t)
757                                  (gnuplot . t)
758                                  (ditaa . t)
759                                  (plantuml . t)))
760
761
762   ;; toggle image preview 
763   (add-hook 'org-babel-after-execute-hook 'sd/display-inline-images 'append)
764
765   (defun sd/display-inline-images ()
766     (condition-case nil
767         (org-display-inline-images)
768       (error nil)))
769
770   ;; ditaa artist mode
771   (with-eval-after-load "artist"
772     (define-key artist-mode-map [down-mouse-3] 'artist-mouse-choose-operation))
773 #+END_SRC
774 *** plantUML
775 [[http://eschulte.github.io/babel-dev/DONE-integrate-plantuml-support.html][DONE-integrate-plantuml-support]]
776 #+BEGIN_SRC sh
777   ## support plantuml
778   brew install plantuml
779 #+END_SRC
780
781 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
782   (use-package plantuml-mode
783     :ensure t)
784
785   (setq org-plantuml-jar-path
786         (expand-file-name "/usr/local/Cellar/plantuml/8041/plantuml.8041.jar"))
787
788   (set-variable 'plantuml-jar-path
789                 (expand-file-name "/usr/local/Cellar/plantuml/8041/plantuml.8041.jar"))
790 #+END_SRC
791
792 ** Org-bullets
793 use [[https://github.com/sabof/org-bullets][org-bullets]] package to show utf-8 charactes
794 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
795   (use-package org-bullets
796     :ensure t
797     :init
798     (add-hook 'org-mode-hook (apply-partially #'org-bullets-mode t)))
799
800   (setq org-bullets-bullet-list '("⦿" "✪" "◉" "○" "►" "◆"))
801
802   ;; increase font size when enter org-src-mode
803   ;; (add-hook 'org-src-mode-hook (lambda () (text-scale-increase 2)))
804
805   ;; define a face for org-bullets
806   (defface org-bullet-face
807       '((t (:foreground "green yellow")))
808   "Face used for the org-bullets.")
809   (setq org-bullets-face-name (quote  org-bullet-face))
810   (set-face-attribute 'org-bullet-face t :foreground "burlywood" :weight 'normal :height 1.6)
811 #+END_SRC
812
813 ** Worf Mode
814 [[https://github.com/abo-abo/worf][worf]] mode is an extension of vi-like binding for org-mode. 
815 In =worf-mode=, it is mapping =[=, =]= as =worf-backward= and =worf-forward= in global, wich
816 cause we cannot input =[= and =]=, so here I unset this mappings. And redifined this two to
817 =M-[= and =M-]=. see this [[https://github.com/abo-abo/worf/issues/19#issuecomment-223756599][issue]]
818 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
819   (use-package worf
820     :ensure t
821     :commands worf-mode
822     :init
823     (require 'ivy)
824     (add-hook 'org-mode-hook 'worf-mode))
825 #+END_SRC
826
827 ** Get Things Done
828 Refer to [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
829 *** basic setup
830 standard key binding
831 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
832   (global-set-key "\C-cl" 'org-store-link)
833   (global-set-key "\C-ca" 'org-agenda)
834   (global-set-key "\C-cb" 'org-iswitchb)
835 #+END_SRC
836
837 *** Plain List 
838 Replace the list bullet =-=, =+=,  with =•=, a litter change based [[https://github.com/howardabrams/dot-files/blob/master/emacs-org.org][here]]
839 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
840   ;; (use-package org-mode
841   ;;   :init
842   ;;   (font-lock-add-keywords 'org-mode
843   ;;    '(("^ *\\([-+]\\) "
844   ;;           (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•")))))))
845 #+END_SRC
846  
847 *** Todo Keywords
848 refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][fancy todo states]], 
849 To track TODO state changes, the =!= is to insert a timetamp, =@= is to insert a note with
850 timestamp for the state change.
851 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
852     ;; (setq org-todo-keywords
853     ;;        '((sequence "☛ TODO(t)" "|" "✔ DONE(d)")
854     ;;          (sequence "⚑ WAITING(w)" "|")
855     ;;          (sequence "|" "✘ CANCELLED(c)")))
856   ; (setq org-todo-keyword-faces
857   ;        (quote ("TODO" .  (:foreground "red" :weight bold))
858   ;               ("NEXT" .  (:foreground "blue" :weight bold))
859   ;               ("WAITING" . (:foreground "forest green" :weight bold))
860   ;               ("DONE" .  (:foreground "magenta" :weight bold))
861   ;               ("CANCELLED" . (:foreground "forest green" :weight bold))))
862
863
864   (setq org-todo-keywords
865         (quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!)")
866                 ;; (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING")
867                 (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" ))))
868
869   (setq org-todo-keyword-faces
870         (quote (("TODO" :foreground "red" :weight bold)
871                 ("NEXT" :foreground "blue" :weight bold)
872                 ("DONE" :foreground "forest green" :weight bold)
873                 ("WAITING" :foreground "orange" :weight bold)
874                 ("HOLD" :foreground "magenta" :weight bold)
875                 ("CANCELLED" :foreground "forest green" :weight bold)
876                 ;; ("MEETING" :foreground "forest green" :weight bold)
877                 ;; ("PHONE" :foreground "forest green" :weight bold)
878                 )))
879 #+END_SRC
880
881 Fast todo selections
882
883 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
884   (setq org-use-fast-todo-selection t)
885   (setq org-treat-S-cursor-todo-selection-as-state-change nil)
886 #+END_SRC
887
888 TODO state triggers and tags, [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
889
890 - Moving a task to =CANCELLED=, adds a =CANCELLED= tag
891 - Moving a task to =WAITING=, adds a =WAITING= tag
892 - Moving a task to =HOLD=, add =HOLD= tags
893 - Moving a task to =DONE=, remove =WAITING=, =HOLD= tag
894 - Moving a task to =NEXT=, remove all waiting/hold/cancelled tags
895
896 This tags are used to filter tasks in agenda views
897 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
898   (setq org-todo-state-tags-triggers
899         (quote (("CANCELLED" ("CANCELLED" . t))
900                 ("WAITING" ("WAITING" . t))
901                 ("HOLD" ("WAITING") ("HOLD" . t))
902                 (done ("WAITING") ("HOLD"))
903                 ("TODO" ("WAITING") ("CANCELLED") ("HOLD"))
904                 ("NEXT" ("WAITING") ("CANCELLED") ("HOLD"))
905                 ("DONE" ("WAITING") ("CANCELLED") ("HOLD")))))
906 #+END_SRC
907
908 Logging Stuff 
909 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
910   ;; log time when task done
911   ;; (setq org-log-done (quote time))
912   ;; save clocking into to LOGBOOK
913   (setq org-clock-into-drawer t)
914   ;; save state change notes and time stamp into LOGBOOK drawer
915   (setq org-log-into-drawer t)
916   (setq org-clock-into-drawer "CLOCK")
917 #+END_SRC
918
919 *** Tags
920 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
921   (setq org-tag-alist (quote ((:startgroup)
922                               ("@office" . ?e)
923                               ("@home" . ?h)
924                               (:endgroup)
925                               ("WAITING" . ?w)
926                               ("HOLD" . ?h)
927                               ("CANCELLED" . ?c))))
928
929   ;; Allow setting single tags without the menu
930   (setq org-fast-tag-selection-single-key (quote expert))
931 #+END_SRC
932
933 *** Capture - Refile - Archive
934
935 Capture lets you quickly store notes with little interruption of your work flow.
936
937 **** Capture Templates
938
939 When a new taks needs to be added, categorize it as 
940
941 All captured file which need next actions are stored in =refile.org=, 
942 - A new task / note (t) =refile.org=
943 - A work task in office =office.org=
944 - A jourenl =diary.org=
945 - A new habit (h) =refile.org=
946
947 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
948   (setq org-directory "~/org")
949   (setq org-default-notes-file "~/org/refile.org")
950   (setq sd/org-diary-file "~/org/diary.org")
951
952   (global-set-key (kbd "C-c c") 'org-capture)
953
954   (setq org-capture-templates
955         (quote (("t" "Todo" entry (file org-default-notes-file)
956                  "* TODO %?\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
957                 ("n" "Note" entry (file org-default-notes-file)
958                  "* %? :NOTE:\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
959                 ("j" "Journal" entry (file+datetree sd/org-diary-file)
960                  "* %?\n:LOGBOOK:\n:END:" :clock-in t :clock-resume t)
961                 ("h" "Habit" entry (file org-default-notes-file)
962                  "* 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 "))))
963 #+END_SRC
964
965 **** Refiling Tasks
966
967 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
968   (setq org-refile-targets (quote (;; (nil :maxlevel . 9)
969                                    (org-agenda-files :maxlevel . 9))))
970
971   (setq org-refile-use-outline-path t)
972
973   (setq org-refile-allow-creating-parent-nodes (quote confirm))
974 #+END_SRC
975
976 *** Agenda Setup
977 Setting agenda files and the agenda view
978 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
979   (setq org-agenda-files (quote ("~/org/gtd.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 ** Org mobile
995 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
996   (with-eval-after-load "org"
997     (require 'org-mobile)
998     ;; Set to the location of your Org files on your local system
999     ;; (setq org-directory "~/org")
1000     ;; Set to the name of the file where new notes will be stored
1001     (setq org-mobile-inbox-for-pull "~/org/flagged.org")
1002     ;; Set to <your Dropbox root directory>/MobileOrg.
1003     (setq org-mobile-directory "~/Dropbox/Apps/MobileOrg"))
1004 #+END_SRC
1005
1006 ** Export PDF
1007 Install MacTex-basic [[http://www.tug.org/mactex/morepackages.html][MacTex-basic]]  and some tex packages
1008 #+BEGIN_SRC sh 
1009   wget http://tug.org/cgi-bin/mactex-download/BasicTeX.pkg
1010
1011   sudo tlmgr update --self
1012
1013   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
1014 #+END_SRC
1015
1016 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1017   ;; ;; allow for export=>beamer by placing
1018
1019   ;; http://emacs-fu.blogspot.com/2011/04/nice-looking-pdfs-with-org-mode-and.html
1020   ;; #+LaTeX_CLASS: beamer in org files
1021   (unless (boundp 'org-export-latex-classes)
1022     (setq org-export-latex-classes nil))
1023   (add-to-list 'org-export-latex-classes
1024     ;; beamer class, for presentations
1025     '("beamer"
1026        "\\documentclass[11pt]{beamer}\n
1027         \\mode<{{{beamermode}}}>\n
1028         \\usetheme{{{{beamertheme}}}}\n
1029         \\usecolortheme{{{{beamercolortheme}}}}\n
1030         \\beamertemplateballitem\n
1031         \\setbeameroption{show notes}
1032         \\usepackage[utf8]{inputenc}\n
1033         \\usepackage[T1]{fontenc}\n
1034         \\usepackage{hyperref}\n
1035         \\usepackage{color}
1036         \\usepackage{listings}
1037         \\lstset{numbers=none,language=[ISO]C++,tabsize=4,
1038     frame=single,
1039     basicstyle=\\small,
1040     showspaces=false,showstringspaces=false,
1041     showtabs=false,
1042     keywordstyle=\\color{blue}\\bfseries,
1043     commentstyle=\\color{red},
1044     }\n
1045         \\usepackage{verbatim}\n
1046         \\institute{{{{beamerinstitute}}}}\n          
1047          \\subject{{{{beamersubject}}}}\n"
1048
1049        ("\\section{%s}" . "\\section*{%s}")
1050  
1051        ("\\begin{frame}[fragile]\\frametitle{%s}"
1052          "\\end{frame}"
1053          "\\begin{frame}[fragile]\\frametitle{%s}"
1054          "\\end{frame}")))
1055
1056     ;; letter class, for formal letters
1057
1058     (add-to-list 'org-export-latex-classes
1059
1060     '("letter"
1061        "\\documentclass[11pt]{letter}\n
1062         \\usepackage[utf8]{inputenc}\n
1063         \\usepackage[T1]{fontenc}\n
1064         \\usepackage{color}"
1065  
1066        ("\\section{%s}" . "\\section*{%s}")
1067        ("\\subsection{%s}" . "\\subsection*{%s}")
1068        ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
1069        ("\\paragraph{%s}" . "\\paragraph*{%s}")
1070        ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
1071
1072
1073   (require 'ox-md)
1074   (require 'ox-beamer)
1075
1076   (setq org-latex-pdf-process
1077         '("pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1078           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1079           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"))
1080
1081   (setq TeX-parse-self t)
1082
1083   (setq TeX-PDF-mode t)
1084   (add-hook 'LaTeX-mode-hook
1085             (lambda ()
1086               (LaTeX-math-mode)
1087               (setq TeX-master t)))
1088
1089 #+END_SRC
1090
1091 ** Export Html
1092 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]]
1093 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1094   (use-package htmlize
1095     :ensure t)
1096 #+END_SRC
1097
1098 ** Org structure template
1099 extend org-mode's easy templates, refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][Extend org-modes' esay templates]]
1100 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1101   ;; ‘s’     ‘#+BEGIN_SRC ... #+END_SRC’
1102   ;; ‘e’     ‘#+BEGIN_EXAMPLE ... #+END_EXAMPLE’
1103   ;; ‘q’     ‘#+BEGIN_QUOTE ... #+END_QUOTE’
1104   ;; ‘v’     ‘#+BEGIN_VERSE ... #+END_VERSE’
1105   ;; ‘c’     ‘#+BEGIN_CENTER ... #+END_CENTER’
1106   ;; ‘l’     ‘#+BEGIN_LaTeX ... #+END_LaTeX’
1107   ;; ‘L’     ‘#+LaTeX:’
1108   ;; ‘h’     ‘#+BEGIN_HTML ... #+END_HTML’
1109   ;; ‘H’     ‘#+HTML:’
1110   ;; ‘a’     ‘#+BEGIN_ASCII ... #+END_ASCII’
1111   ;; ‘A’     ‘#+ASCII:’
1112   ;; ‘i’     ‘#+INDEX:’ line
1113   ;; ‘I’     ‘#+INCLUDE:’ line
1114
1115
1116   (add-to-list 'org-structure-template-alist
1117                '("E" "#+BEGIN_SRC emacs-lisp :tangle yes :results silent\n?\n#+END_SRC"))
1118   (add-to-list 'org-structure-template-alist
1119                '("R" "#+BEGIN_SRC racket :tangle no :results output replace\n?\n#+END_SRC"))
1120   (add-to-list 'org-structure-template-alist
1121                '("S" "#+BEGIN_SRC sh :results output replace\n?\n#+END_SRC"))
1122   (add-to-list 'org-structure-template-alist
1123                '("p" "#+BEGIN_SRC plantuml :file uml.png \n?\n#+END_SRC"))
1124   (add-to-list 'org-structure-template-alist
1125                '("P" "#+BEGIN_SRC perl \n?\n#+END_SRC"))
1126   (add-to-list 'org-structure-template-alist
1127                '("f" "#+BEGIN_SRC fundamental :tangle ?\n\n#+END_SRC"))
1128   (add-to-list 'org-structure-template-alist
1129                '("C" "#+BEGIN_SRC c :tangle ?\n\n#+END_SRC"))
1130   (add-to-list 'org-structure-template-alist
1131                '("m" "\\begin{equation}\n?\n\\end{equation}"))
1132   (add-to-list 'org-structure-template-alist
1133                '("b" "#+STARTUP: showall
1134   ,#+STARTUP: inlineimages
1135   ,#+OPTIONS: toc:nil\n"))
1136   (add-to-list 'org-structure-template-alist
1137                '("d" "#+BEGIN_SRC ditaa :file ?  :cmdline -r -s 0.8 :cache yes \n\n#+END_SRC"))
1138   (add-to-list 'org-structure-template-alist
1139                '("u" "#+BEGIN_SRC plantuml :file ? \n\n#+END_SRC"))
1140
1141 #+END_SRC
1142
1143 ** Org theme
1144 *** variable-pitch-mode and fixed-pitch-mode
1145 [[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]]
1146 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1147   (unless (find-font (font-spec :name "Ubuntu Mono"))
1148     (warn "Font not found Ubuntu Mono"))
1149   (unless (find-font (font-spec :name "Source Code Pro"))
1150     (warn "Font not found Source Code Pro"))
1151   (unless (find-font (font-spec :name "Source Sans Pro"))
1152     (warn "Font not found Source Sans Pro"))
1153
1154   (set-face-attribute 'variable-pitch nil :font "Source Sans Pro" :height 160)
1155   (set-face-attribute 'fixed-pitch nil :font "Source Code Pro" :height (face-attribute 'default :height))
1156
1157   ;; (add-hook 'text-mode-hook 'variable-pitch-mode)
1158
1159   ;; Install Ubuntu Mono fonts and apply it in org-table to align Chinese fonts
1160   (with-eval-after-load "org"
1161     (mapc (lambda (face)
1162             (set-face-attribute face nil :inherit 'fixed-pitch))
1163           (list 'org-code 'org-block 'org-block-background 'org-block-begin-line 'org-block-end-line))
1164     (set-face-attribute 'org-table nil :family "Ubuntu Mono" :height 140)
1165     (set-face-attribute 'org-formula nil :family "Ubuntu Mono" :height 140)
1166     ;; org-special-keyword inherited from font-lock-keywork originally; as org is changed to variable-pitch, it cause
1167     ;; the font in special-keywords are not monospace
1168     (set-face-attribute 'org-special-keyword nil :inherit '(font-lock-keyword-face fixed-pitch))
1169     ;; same as above 
1170     (set-face-attribute 'org-verbatim nil :inherit '(shadow fixed-pitch))
1171     
1172     ;; fix indent broken by variable-pitch-mode
1173     ;; http://emacs.stackexchange.com/questions/26864/variable-pitch-face-breaking-indentation-in-org-mode
1174     (require 'org-indent)
1175     (set-face-attribute 'org-indent nil :inherit '(org-hide fixed-pitch)))
1176 #+END_SRC
1177
1178 Also correct the face of  =org-meta-line= in =org-table= 
1179 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1180   (with-eval-after-load "org"
1181     (set-face-attribute 'org-meta-line nil :font "Source Code Pro" :height 120 :slant 'italic :inherit 'font-lock-comment-face))
1182 #+END_SRC
1183
1184 *** Org-head face
1185 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1186   ;; (with-eval-after-load "org"
1187   ;;   (let* ((base-height (face-attribute 'variable-pitch :height))
1188   ;;          (base-font-color (face-foreground 'default nil  'default)))
1189   ;;     (set-face-attribute 'org-document-title nil :weight 'bold :height (+ 60 base-height))
1190   ;;     (set-face-attribute 'org-level-1 nil :weight 'bold :height (+ 40 base-height))
1191   ;;     (set-face-attribute 'org-level-2 nil :weight 'bold :height (+ 30 base-height))
1192   ;;     (set-face-attribute 'org-level-3 nil :weight 'bold :height (+ 20 base-height))
1193   ;;     (set-face-attribute 'org-level-4 nil :weight 'bold :height (+ 10 base-height))
1194   ;;     (set-face-attribute 'org-level-5 nil :weight 'bold)
1195   ;;     (set-face-attribute 'org-level-6 nil :weight 'bold)
1196   ;;     (set-face-attribute 'org-level-7 nil :weight 'bold)
1197   ;;     (set-face-attribute 'org-level-8 nil :weight 'bold)))
1198 #+END_SRC
1199
1200 ** Org Blog
1201 Fetch dependencies file, which is not in this repository.
1202 #+BEGIN_SRC perl :results silent :tangle yes
1203   print `curl https://raw.githubusercontent.com/seudut/blog/master/my-publish.el -o ./elisp/my-publish.el`;
1204 #+END_SRC
1205
1206 Load 
1207 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1208   (add-to-list 'load-path "~/.emacs.d/elisp")
1209
1210   (when (file-exists-p "~/.emacs.d/elisp/my-publish.el")
1211     (require 'my-publish)
1212     (blog-setup-project-alist "~/Private/blog/"))
1213 #+END_SRC
1214
1215
1216 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]]
1217
1218 * Magit
1219 [[https://github.com/magit/magit][Magit]] is a very cool git interface on Emacs.
1220 and Defined keys, using vi keybindings, Refer abo-abo's setting [[https://github.com/abo-abo/oremacs/blob/c5cafdcebc88afe9e73cc8bd40c49b70675509c7/modes/ora-nextmagit.el][here]]
1221 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1222   (use-package magit
1223     :ensure t
1224     :init
1225     ;; don't ask me to confirm the unsaved change 
1226     (setq magit-save-repository-buffers nil)
1227     ;; default is 50
1228     (setq git-commit-summary-max-length 100)
1229     :commands magit-status magit-blame
1230     :config
1231     (dolist (map (list magit-status-mode-map
1232                        magit-log-mode-map
1233                        magit-diff-mode-map
1234                        magit-staged-section-map))
1235       (define-key map "j" 'magit-section-forward)
1236       (define-key map "k" 'magit-section-backward)
1237       (define-key map "D" 'magit-discard)
1238       (define-key map "O" 'magit-discard-file)
1239       (define-key map "n" nil)
1240       (define-key map "p" nil)
1241       (define-key map "v" 'recenter-top-bottom)
1242       (define-key map "i" 'magit-section-toggle)))
1243 #+END_SRC
1244
1245 * Eshell
1246 ** Eshell alias
1247 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1248   (defalias 'e 'find-file)
1249   (defalias 'ff 'find-file)
1250   (defalias 'ee 'find-files)
1251 #+END_SRC
1252
1253 ** eshell temp directory
1254 set default eshell history folder
1255 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1256   (setq eshell-directory-name (concat  sd-temp-directory "eshell"))
1257 #+END_SRC
1258
1259 ** Eshell erase buffer
1260 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1261   (require 'utilities)
1262
1263   ;; (add-hook 'eshell-mode-hook (lambda ()
1264   ;;                               (local-set-key (kbd "C-l") 'sd/eshell-clear-buffer)))
1265   (add-hook 'eshell-mode-hook (apply-partially #'local-set-key (kbd "C-l") 'sd/eshell-clear-buffer))
1266   ;; (add-hook 'eshell-mode-map (lambda () (interactive)
1267   ;;                              (define-key eshell-mode-map (kbd "<tab>") 'completion-at-point)))
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     (setq lispy-delete-backward-recenter 0)
2119     (with-eval-after-load "lispy"
2120       (define-key lispy-mode-map (kbd "M-o") nil)
2121       (define-key lispy-mode-map (kbd "g") 'special-lispy-goto-local)
2122       (define-key lispy-mode-map (kbd "G") 'special-lispy-goto)
2123       (define-key lispy-mode-map (kbd "M-m") 'back-to-indentation))
2124     :config
2125     (add-hook 'emacs-lisp-mode-hook (apply-partially #'lispy-mode 1)))
2126 #+END_SRC
2127
2128 ** Perl
2129 *** CPerl mode
2130 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
2131 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2132   (defalias 'perl-mode 'cperl-mode)
2133
2134   ;; (setq cperl-hairy t)
2135   ;; Turns on most of the CPerlMode options
2136   (setq cperl-auto-newline t)
2137   (setq cperl-highlight-variables-indiscriminately t)
2138   ;(setq cperl-indent-level 4)
2139   ;(setq cperl-continued-statement-offset 4)
2140   (setq cperl-close-paren-offset -4)
2141   (setq cperl-indent-parents-as-block t)
2142   (setq cperl-tab-always-indent t)
2143   ;(setq cperl-brace-offset  0)
2144
2145   (add-hook 'cperl-mode-hook (apply-partially #'cperl-set-style "C++"))
2146
2147   (defalias 'perldoc 'cperl-perldoc)
2148 #+END_SRC
2149
2150 *** Perl template
2151 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
2152 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2153   (eval-after-load 'autoinsert
2154     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
2155        '(
2156          "Empty"
2157          "#!/usr/bin/perl -w" \n
2158          \n
2159          "use strict;" >  \n \n
2160          > _
2161          )))
2162 #+END_SRC
2163
2164 *** Perl Keywords
2165 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2166   (font-lock-add-keywords 'cperl-mode
2167                           '(("\\(say\\)" . cperl-nonoverridable-face)
2168                             ("\\([0-9.]\\)*" . font-lock-constant-face)
2169                             ("\".*\\(\\\n\\).*\"" . font-lock-constant-face)
2170                             ("\n" . font-lock-constant-face)
2171                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
2172
2173     ;; (font-lock-add-keywords 'Man-mode
2174     ;;                         '(("\\(NAME\\)" . font-lock-function-name-face)))
2175
2176 #+END_SRC
2177
2178 *** Run Perl
2179 Change the compile-command to set the default command run when call =compile=
2180 Mapping =s-r= (on Mac, it's =Command + R= to run the script. Here =current-prefix-arg= is set
2181 to call =compilation=  interactively.
2182 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2183   (defun my-perl-hook ()
2184     (progn
2185       (setq-local compilation-read-command nil)
2186       (set (make-local-variable 'compile-command)
2187            (concat "/usr/bin/perl "
2188                    (if buffer-file-name
2189                        (shell-quote-argument buffer-file-name))))
2190       (local-set-key (kbd "s-r")
2191                      (lambda ()
2192                        (interactive)
2193                                           ;                       (setq current-prefix-arg '(4)) ; C-u
2194                        (call-interactively 'compile)))))
2195
2196   (add-hook 'cperl-mode-hook 'my-perl-hook)
2197 #+END_SRC
2198
2199 ** C & C++
2200 C/C++ ide tools
2201 1. completion (file name, function name, variable name)
2202 2. template yasnippet (keywords, if, function)
2203 3. tags jump
2204 *** c/c++ style
2205 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2206   (setq c-default-style "stroustrup"
2207         c-basic-offset 4)
2208
2209   ;; "C-M-j" is my global binding for avy goto line below
2210   ;; disable it in c mode
2211   (mapcar #'(lambda (map)
2212              (define-key map (kbd "C-M-j") nil))
2213           (list c-mode-map
2214                 c++-mode-map
2215                 objc-mode-map))
2216
2217   ;; objective c
2218   (add-to-list 'auto-mode-alist '("\\.mm\\'" . objc-mode))
2219 #+END_SRC
2220
2221 *** irony
2222 **** install irony server
2223 Install clang, on mac, it has =libclang.dylib=, but no develop headers. Install by =brew=
2224 #+BEGIN_SRC sh
2225   brew install llvm --with-clang
2226 #+END_SRC
2227
2228 then install irony searver, and =LIBCLANG_LIBRARY= and =LIBCLANG_INCLUDE_DIR= accordingly
2229 #+BEGIN_SRC emacs-lisp :tangle no :results silent
2230   (irony-install-server)
2231 #+END_SRC
2232
2233 #+BEGIN_SRC sh
2234   cmake -DLIBCLANG_LIBRARY\=/usr/local/Cellar/llvm/4.0.1/lib/libclang.dylib \
2235         -DLIBCLANG_INCLUDE_DIR=/usr/local/Cellar/llvm/4.0.1/include \
2236         -DCMAKE_INSTALL_PREFIX\=/Users/peng/.emacs.d/irony/ \
2237         /Users/peng/.emacs.d/elpa/irony-20160713.1245/server && cmake --build . --use-stderr --config Release --target install 
2238 #+END_SRC
2239
2240 **** irony config
2241 irony-mode-hook, copied from [[https://github.com/Sarcasm/irony-mode][irony-mode]] github
2242 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2243   (use-package irony
2244     :ensure t
2245     :config
2246     (add-hook 'c++-mode-hook 'irony-mode)
2247     (add-hook 'c-mode-hook 'irony-mode)
2248     (add-hook 'objc-mode-hook 'irony-mode))
2249
2250   ;; replace the `completion-at-point' and `complete-symbol' bindings in
2251   ;; irony-mode's buffers by irony-mode's function
2252
2253   (defun my-irony-mode-hook ()
2254     (define-key irony-mode-map [remap completion-at-point]
2255       'irony-completion-at-point-async)
2256     (define-key irony-mode-map [remap complete-symbol]
2257       'irony-completion-at-point-async))
2258
2259   (add-hook 'irony-mode-hook 'my-irony-mode-hook)
2260   (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)
2261
2262   (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
2263
2264   ;; add C++ completions, because by default c++ file can not complete
2265   ;; c++ std functions, another method is create .dir-local.el file, for p
2266   ;; for project see irony
2267   (defun sd/c++-mode-local-vars ()
2268     (setq irony--compile-options
2269         '("-std=c++11"
2270           "-stdlib=libc++"
2271           "-I/usr/include/c++/4.2.1")))
2272 #+END_SRC
2273
2274 irony-company
2275 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2276   (use-package company-irony
2277     :ensure t)
2278
2279   (use-package flycheck-irony
2280     :ensure t)
2281
2282   (use-package company-c-headers
2283     :ensure t
2284     :config
2285     (add-to-list 'company-c-headers-path-system "/usr/include/c++/4.2.1/")
2286     (add-to-list 'company-c-headers-path-system "/usr/local/include/"))
2287
2288   ;; (with-eval-after-load 'company
2289   ;;   (add-to-list 'company-backends 'company-irony)
2290   ;;   (add-to-list 'company-backends 'company-c-headers))
2291
2292   (with-eval-after-load 'company
2293     (push  '(company-irony :with company-yasnippet) company-backends)
2294     (push  '(company-c-headers :with company-yasnippet) company-backends))
2295
2296   (with-eval-after-load 'flycheck
2297     (add-hook 'flycheck-mode-hook #'flycheck-irony-setup))
2298 #+END_SRC
2299
2300 *** flycheck
2301 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2302   (use-package flycheck
2303     :ensure t)
2304 #+END_SRC
2305
2306 *** gtags
2307 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2308   (use-package ggtags
2309     :ensure t
2310     :config
2311     (define-key ggtags-mode-map (kbd "M-g d") 'ggtags-find-definition)
2312     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2313     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2314     (define-key ggtags-mode-map (kbd "C-c g s") 'ggtags-find-other-symbol)
2315     (define-key ggtags-mode-map (kbd "C-c g h") 'ggtags-view-tag-history)
2316     (define-key ggtags-mode-map (kbd "C-c g r") 'ggtags-find-reference)
2317     (define-key ggtags-mode-map (kbd "C-c g f") 'ggtags-find-file)
2318     (define-key ggtags-mode-map (kbd "C-c g c") 'ggtags-create-tags)
2319     (define-key ggtags-mode-map (kbd "C-c g u") 'ggtags-update-tags))
2320
2321   (add-hook 'c-mode-common-hook
2322             (lambda ()
2323               (when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
2324                 (ggtags-mode 1))))
2325
2326   (require 'cc-mode)
2327   (require 'semantic)
2328
2329   (global-semanticdb-minor-mode 1)
2330   (global-semantic-idle-scheduler-mode 1)
2331
2332   (semantic-mode 1)
2333 #+END_SRC
2334
2335 *** google C style
2336 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2337   ;; (use-package google-c-style
2338   ;;   :ensure t
2339   ;;   :config
2340   ;;   (add-hook 'c-mode-hook 'google-set-c-style)
2341   ;;   (add-hook 'c++-mode-hook 'google-set-c-style))
2342 #+END_SRC
2343
2344 *** Compile and Run the C file
2345 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2346   (defun my-cpp-hook ()
2347     (let* ((current-file-name)
2348            (a-dot-out-file))
2349       (when buffer-file-name
2350         (setq current-file-name (shell-quote-argument buffer-file-name))
2351         (setq a-dot-out-file (concat (file-name-directory buffer-file-name) "a.out")))
2352       (setq-local compilation-read-command t)
2353       (set (make-local-variable 'compile-command)
2354            (concat "g++ -Wall "
2355                    current-file-name
2356                    " && "
2357                    a-dot-out-file))
2358       (local-set-key (kbd "s-r") 'compile)))
2359
2360   (add-hook 'c-mode-hook 'my-cpp-hook)
2361   (add-hook 'c++-mode-hook 'my-cpp-hook)
2362 #+END_SRC
2363
2364 ** Lua
2365 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2366   (use-package lua-mode
2367     :ensure t)
2368 #+END_SRC
2369
2370 ** Scheme
2371 Install =guile=, =guile= is an implementation of =Scheme= programming language.
2372 #+BEGIN_SRC sh
2373   brew install guile
2374 #+END_SRC
2375
2376 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2377   (setq geiser-scheme-implementation 'guile)
2378 #+END_SRC
2379
2380 #+BEGIN_SRC scheme
2381   (define a "3")
2382   a
2383 #+END_SRC
2384
2385 #+RESULTS:
2386 : 3
2387
2388 ** Racket
2389 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2390   (use-package racket-mode
2391     :ensure t
2392     :config
2393     (define-key racket-mode-map (kbd "s-r") 'racket-run)
2394     (add-to-list 'racket-mode-hook (lambda () (lispy-mode 1))))
2395
2396   ;; set racket path
2397   (setenv "PATH" (concat (getenv "PATH")
2398                          ":" "/Applications/Racket v6.6/bin"))
2399   (setenv "MANPATH" (concat (getenv "MANPATH")
2400                             ":" "/Applications/Racket v6.6/man"))
2401   (setq exec-path (append exec-path '("/Applications/Racket v6.6/bin")))
2402
2403   (add-to-list 'auto-mode-alist '("\\.rkt\\'" . racket-mode))
2404 #+END_SRC
2405
2406 * Compile
2407 Set the environments vairables in compilation mode
2408 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2409   (use-package compile
2410     :commands compile
2411     :config
2412     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
2413     (setq compilation-auto-jump-to-first-error t)
2414     (setq compilation-auto-jump-to-next t)
2415     (setq compilation-scroll-output 'first-error))
2416
2417   ;; super-r to compile
2418   (with-eval-after-load "compile"
2419     (define-key compilation-mode-map (kbd "C-o") nil)
2420     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
2421     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
2422     (define-key compilation-mode-map (kbd "r") #'recompile))
2423
2424   (global-set-key (kbd "s-r") 'compile)
2425 #+END_SRC
2426
2427 * Auto-Insert
2428 ** Enable auto-insert mode
2429 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2430   (auto-insert-mode t)
2431   (setq auto-insert-query nil)
2432 #+END_SRC
2433
2434 ** C++ Auto Insert
2435 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2436   (eval-after-load 'autoinsert
2437     '(define-auto-insert '("\\.cpp\\|.cc\\'" . "C++ skeleton")
2438        '(
2439          "Short description:"
2440          "/*"
2441          "\n * " (file-name-nondirectory (buffer-file-name))
2442          "\n */" > \n \n
2443          "#include <iostream>" \n
2444          "//#include \""
2445          (file-name-sans-extension
2446           (file-name-nondirectory (buffer-file-name)))
2447          ".hpp\"" \n \n
2448          "using namespace std;" \n \n
2449          "int main (int argc, char *argv[])"
2450          "\n{" \n 
2451          > _ \n
2452          "return 0;"
2453          "\n}" > \n
2454          )))
2455
2456   (eval-after-load 'autoinsert
2457     '(define-auto-insert '("\\.c\\'" . "C skeleton")
2458        '(
2459          "Short description:"
2460          "/*\n"
2461          " * " (file-name-nondirectory (buffer-file-name)) "\n"
2462          " */" > \n \n
2463          "#include <stdio.h>" \n
2464          "//#include \""
2465          (file-name-sans-extension
2466           (file-name-nondirectory (buffer-file-name)))
2467          ".h\"" \n \n
2468          "int main (int argc, char *argv[])\n"
2469          "{" \n
2470          > _ \n
2471          "return 0;\n"
2472          "}" > \n
2473          )))
2474
2475   (eval-after-load 'autoinsert
2476     '(define-auto-insert '("\\.h\\|.hpp\\'" . "c/c++ header")
2477        '((s-upcase (s-snake-case (file-name-nondirectory buffer-file-name)))
2478          "#ifndef " str n "#define " str "\n\n" _ "\n\n#endif  // " str)))
2479 #+END_SRC
2480
2481 ** Python template
2482 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2483   (eval-after-load 'autoinsert
2484     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
2485        '(
2486          "Empty"
2487          "#import os,sys" \n
2488          \n \n
2489          )))
2490 #+END_SRC
2491
2492 ** Elisp 
2493 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
2494 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
2495 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2496   (eval-after-load 'autoinsert
2497     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
2498        '(
2499          "Short description: "
2500          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
2501          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
2502          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
2503          "\n
2504   ;; Copyright (C) " (format-time-string "%Y") "  "
2505          (getenv "ORGANIZATION") | (progn user-full-name) "
2506
2507   ;; Author: " (user-full-name)
2508          '(if (search-backward "&" (line-beginning-position) t)
2509               (replace-match (capitalize (user-login-name)) t t))
2510          '(end-of-line 1) " <" (progn user-mail-address) ">
2511   ;; Keywords: "
2512          '(require 'finder)
2513          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
2514          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
2515                            finder-known-keywords)
2516                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
2517                               finder-known-keywords
2518                               "\n"))
2519          ((let ((minibuffer-help-form v2))
2520             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
2521           str ", ") & -2 "
2522
2523   \;; This program is free software; you can redistribute it and/or modify
2524   \;; it under the terms of the GNU General Public License as published by
2525   \;; the Free Software Foundation, either version 3 of the License, or
2526   \;; (at your option) any later version.
2527
2528   \;; This program is distributed in the hope that it will be useful,
2529   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2530   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2531   \;; GNU General Public License for more details.
2532
2533   \;; You should have received a copy of the GNU General Public License
2534   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
2535
2536   \;;; Commentary:
2537
2538   \;; " _ "
2539
2540   \;;; Code:
2541
2542
2543   \(provide '"
2544          (file-name-base)
2545          ")
2546   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
2547 #+END_SRC
2548
2549 ** Org file template
2550 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2551   ;; (eval-after-load 'autoinsert
2552   ;;   '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
2553   ;;      '(
2554   ;;        "title: "
2555   ;;        "#+TITLE: " str (make-string 30 ?\s) > \n
2556   ;;        "#+AUTHOR: Peng Li\n"
2557   ;;        "#+EMAIL: seudut@gmail.com\n"
2558   ;;        "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
2559   ;;        > \n
2560   ;;        > _)))
2561 #+END_SRC
2562
2563 * Markdown mode
2564 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2565   (use-package markdown-mode
2566     :ensure t
2567     :commands (markdown-mode gfm-mode)
2568     :mode (("README\\.md\\'" . gfm-mode)
2569            ("\\.md\\'" . markdown-mode)
2570            ("\\.markdown\\'" . markdown-mode))
2571     :init (setq markdown-command "multimarkdown"))
2572
2573   (add-hook 'gfm-mode-hook (lambda ()
2574                              (set-face-attribute 'markdown-inline-code-face nil :inherit 'fixed-pitch)
2575                              (set-face-attribute 'markdown-pre-face nil :inherit 'fixed-pitch)))
2576   (with-eval-after-load "gfm-mode"
2577     (set-face-attribute 'markdown-inline-code-face nil :inherit 'fixed-pitch)
2578     (set-face-attribute 'markdown-pre-face nil :inherit 'fixed-pitch))
2579 #+END_SRC
2580
2581 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2582   (use-package markdown-preview-eww
2583     :ensure t)
2584 #+END_SRC
2585
2586 * Gnus
2587 ** Gmail setting 
2588 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
2589 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2590   (setq user-mail-address "seudut@gmail.com"
2591         user-full-name "Peng Li")
2592
2593   (setq gnus-select-method
2594         '(nnimap "gmail"
2595                  (nnimap-address "imap.gmail.com")
2596                  (nnimap-server-port "imaps")
2597                  (nnimap-stream ssl)))
2598
2599   (setq smtpmail-smtp-service 587
2600         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
2601
2602   ;; Use gmail sending mail
2603   (setq message-send-mail-function 'smtpmail-send-it
2604         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
2605         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
2606         smtpmail-default-smtp-server "smtp.gmail.com"
2607         smtpmail-smtp-server "smtp.gmail.com"
2608         smtpmail-smtp-service 587
2609         starttls-use-gnutls t)
2610 #+END_SRC
2611
2612 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
2613 and =<PASSWORD>= with the password
2614 #+BEGIN_EXAMPLE
2615   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
2616   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
2617 #+END_EXAMPLE
2618
2619 Then Run =M-x gnus=
2620
2621 ** Group buffer
2622 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2623   ;; (use-package gnus
2624   ;;   :init
2625   ;;   (setq gnus-permanently-visible-groups "\.*")
2626   ;;   :config
2627   ;;   (cond (window-system
2628   ;;          (setq custom-background-mode 'light)
2629   ;;          (defface my-group-face-1
2630   ;;            '((t (:foreground "Red" :bold t))) "First group face")
2631   ;;          (defface my-group-face-2
2632   ;;            '((t (:foreground "DarkSeaGreen4" :bold t)))
2633   ;;            "Second group face")
2634   ;;          (defface my-group-face-3
2635   ;;            '((t (:foreground "Green4" :bold t))) "Third group face")
2636   ;;          (defface my-group-face-4
2637   ;;            '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
2638   ;;          (defface my-group-face-5
2639   ;;            '((t (:foreground "Blue" :bold t))) "Fifth group face")))
2640   ;;   (setq gnus-group-highlight
2641   ;;         '(((> unread 200) . my-group-face-1)
2642   ;;           ((and (< level 3) (zerop unread)) . my-group-face-2)
2643   ;;           ((< level 3) . my-group-face-3)
2644   ;;           ((zerop unread) . my-group-face-4)
2645   ;;           (t . my-group-face-5))))
2646
2647
2648   ;; ;; key-
2649   ;; (add-hook 'gnus-group-mode-hook (lambda ()
2650   ;;                                   (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
2651   ;;                                   (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
2652   ;;                                   (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
2653   ;;                                   (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
2654 #+END_SRC
2655
2656 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2657   (setq gnus-fetch-old-headers 't)
2658
2659
2660
2661   (setq gnus-extract-address-components
2662         'mail-extract-address-components)
2663   ;; summary buffer 
2664   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
2665   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
2666                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
2667                                       (604800 . "%a, %b %-d")
2668                                       (15778476 . "%b %-d")
2669                                       (t . "%Y-%m-%d")))
2670
2671   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
2672   (setq gnus-unread-mark ?\.)
2673   (setq gnus-use-correct-string-widths t)
2674
2675   ;; thread
2676   (setq gnus-thread-hide-subtree t)
2677
2678   ;; (with-eval-after-load 'gnus-summary-mode
2679   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
2680
2681   ;; (add-hook 'gnus-summary-mode-hook (lambda ()
2682   ;;                                     (define-key gnus-summary-mode-map (kbd "C-o") nil)))
2683   ;(add-hook 'gnus-summary-mode-hook (apply-partially #'define-key gnus-summary-mode-map (kbd "C-o") nil))
2684
2685
2686 #+END_SRC
2687
2688 ** Windows layout
2689 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
2690 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2691   (gnus-add-configuration
2692    '(summary
2693      (horizontal 1.0
2694                  (vertical 35
2695                            (group 1.0))
2696                  (vertical 1.0
2697                            (summary 1.0 poine)))))
2698
2699   (gnus-add-configuration
2700    '(article
2701      (horizontal 1.0
2702                  (vertical 35
2703                            (group 1.0))
2704                  (vertical 1.0
2705                            (summary 0.50 point)
2706                            (article 1.0)))))
2707
2708   (with-eval-after-load 'gnus-group-mode
2709     (gnus-group-select-group "INBOX"))
2710   ;; (add-hook 'gnus-group-mode-map (lambda ()
2711   ;;                               (gnus-group-select-group "INBOX")))
2712 #+END_SRC
2713
2714 * Mu4e
2715 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]]
2716
2717 ** OfflineImap - download all mails from IMAP into local directory, and keep in sync
2718 #+BEGIN_SRC sh :results output replace
2719   # offline-imap
2720   brew install offline-imap
2721
2722   cp /usr/local/etc/offlineimap.conf ~/.offlineimapr
2723
2724   #For the =offlineimap= config on mac, using =sslcacertfile= instead of =cert_fingerpring=. On Mac
2725   sslcacertfile = /usr/local/etc/openssl/cert.pem 
2726 #+END_SRC
2727
2728 #+BEGIN_SRC conf 
2729   [general]
2730   ui=TTYUI
2731   accounts = Gmail
2732   autorefresh = 5
2733
2734   [Account Gmail]
2735   localrepository = Gmail-Local
2736   remoterepository = Gmail-Remote
2737
2738   [Repository Gmail-Local]
2739   type = Maildir
2740   localfolders = ~/.Mail/seudut@gmail.com
2741
2742   [Repository Gmail-Remote]
2743   type = Gmail
2744   remotehost = imap.gmail.com
2745   remoteuser = seudut@gmail.com
2746   remotepass = xxxxxxxx
2747   realdelete = no
2748   ssl = yes
2749   #cert_fingerprint = <insert gmail server fingerprint here>
2750   sslcacertfile = /usr/local/etc/openssl/cert.pem
2751   maxconnections = 1
2752   folderfilter = lambda folder: folder not in ['[Gmail]/Trash',
2753                                                '[Gmail]/Spam',
2754                                                '[Gmail]/All Mail',
2755                                                ]
2756 #+END_SRC
2757
2758 Then, run =offlineimap= to sync the mail
2759
2760 ** Mu - fast search, view mails and extract attachments.
2761 #+BEGIN_SRC sh
2762   EMACS=/usr/local/bin/emacs brew install mu --with-emacs
2763 #+END_SRC
2764
2765 Then, run =mu index --maildir=~/.Mail=
2766
2767 ** Mu4e - Emacs frontend of Mu
2768 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]]
2769 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2770   (if (require 'mu4e nil 'noerror)
2771       (progn
2772         (setq mu4e-maildir "~/.Mail")
2773         (setq mu4e-drafts-folder "/[Gmail].Drafts")
2774         (setq mu4e-sent-folder   "/[Gmail].Sent Mail")
2775         ;; don't save message to Sent Messages, Gmail/IMAP takes care of this
2776         (setq mu4e-sent-messages-behavior 'delete)
2777         ;; allow for updating mail using 'U' in the main view:
2778         (setq mu4e-get-mail-command "offlineimap")
2779
2780         ;; shortcuts
2781         (setq mu4e-maildir-shortcuts
2782               '( ("/INBOX"               . ?i)
2783                  ("/[Gmail].Sent Mail"   . ?s)))
2784
2785         ;; something about ourselves
2786         (setq
2787          user-mail-address "seudut@gmail.com"
2788          user-full-name  "Peng Li"
2789          mu4e-compose-signature
2790          (concat
2791           "Thanks,\n"
2792           "Peng\n"))
2793
2794         ;; show images
2795         (setq mu4e-show-images t)
2796
2797         ;; use imagemagick, if available
2798         (when (fboundp 'imagemagick-register-types)
2799           (imagemagick-register-types))
2800
2801         ;; convert html emails properly
2802         ;; Possible options:
2803         ;;   - html2text -utf8 -width 72
2804         ;;   - textutil -stdin -format html -convert txt -stdout
2805         ;;   - html2markdown | grep -v '&nbsp_place_holder;' (Requires html2text pypi)
2806         ;;   - w3m -dump -cols 80 -T text/html
2807         ;;   - view in browser (provided below)
2808         (setq mu4e-html2text-command "textutil -stdin -format html -convert txt -stdout")
2809
2810         ;; spell check
2811         (add-hook 'mu4e-compose-mode-hook
2812                   (defun my-do-compose-stuff ()
2813                     "My settings for message composition."
2814                     (set-fill-column 72)
2815                     (flyspell-mode)))
2816
2817         ;; add option to view html message in a browser
2818         ;; `aV` in view to activate
2819         (add-to-list 'mu4e-view-actions
2820                      '("ViewInBrowser" . mu4e-action-view-in-browser) t)
2821
2822         ;; fetch mail every 10 mins
2823         (setq mu4e-update-interval 600)
2824
2825         ;; mu4e view
2826         (setq-default mu4e-headers-fields '((:flags . 6)
2827                                             (:from-or-to . 22)
2828                                             (:mailing-list . 20)
2829                                             (:thread-subject . 70)
2830                                             (:human-date . 16))))
2831     (warn "seudut:mu4e not installed, it won't work."))
2832 #+END_SRC
2833
2834 ** Smtp - send mail
2835 - =gnutls=, depends on =gnutls=, first confirm this is installed, otherwise, =brew install gnutls=
2836 - =~/.authinfo=
2837 #+BEGIN_SRC fundamental 
2838   machine smtp.gmail.com login <gmail username> password <gmail password>
2839 #+END_SRC
2840 - OPTIONAL, encrypt the =~/.authinfo= file
2841 #+BEGIN_SRC sh :results output replace
2842   gpg --output ~/.authinfo.gpg --symmetric ~/.authinfo
2843 #+END_SRC
2844
2845 * Ediff
2846 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2847   (with-eval-after-load 'ediff
2848     (setq ediff-split-window-function 'split-window-horizontally)
2849     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
2850     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
2851     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
2852     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
2853 #+END_SRC
2854
2855 * Modes
2856 ** Yaml-mode
2857 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2858   (use-package yaml-mode
2859     :ensure t
2860     :init
2861     (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)))
2862 #+END_SRC
2863
2864 * Entertainment
2865 ** GnuGo
2866 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
2867 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2868   (use-package gnugo
2869     :ensure t
2870     :defer t
2871     :init
2872     (require 'gnugo-imgen)
2873     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
2874     (add-hook 'gnugo-start-game-hook '(lambda ()
2875                                         (gnugo-image-display-mode)
2876                                         (gnugo-grid-mode)))
2877     :config
2878     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
2879 #+END_SRC
2880
2881 ** Emms
2882 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
2883 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2884   (use-package emms
2885     :ensure t
2886     :init
2887     (setq emms-directory (concat sd-temp-directory "emms"))
2888     (setq emms-source-file-default-directory "~/Music/")
2889     :config
2890     (emms-standard)
2891     (emms-default-players)
2892     (define-emms-simple-player mplayer '(file url)
2893       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
2894                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
2895                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
2896                     ".m4a" ".flv" ".ogv" ".pls"))
2897       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
2898     (emms-history-load))
2899 #+END_SRC
2900
2901 * Dictionary
2902 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2903   (use-package bing-dict
2904     :ensure t
2905     :init
2906     (global-set-key (kbd "s-d") 'bing-dict-brief)
2907     :commands (bing-dict-brief))
2908 #+END_SRC
2909
2910 * Key Bindings
2911 Here are some global key bindings for basic editting
2912 ** Esc in minibuffer
2913 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
2914 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2915   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
2916   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
2917   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
2918   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
2919   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
2920   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
2921   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
2922   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
2923   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
2924
2925   ;; Also map s-h same as C-g
2926   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
2927 #+END_SRC
2928
2929 ** Project operations - =super=
2930 *** Projectile
2931 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2932   (use-package projectile
2933     :ensure t
2934     :init
2935     (setq projectile-enable-caching t)
2936     (setq projectile-switch-project-action (lambda ()
2937                                              (projectile-dired)
2938                                              (sd/project-switch-action)))
2939     (setq projectile-cache-file (concat sd-temp-directory "projectile.cache"))
2940     :config
2941     (add-to-list 'projectile-globally-ignored-files "GTAGS")
2942     (projectile-global-mode t))
2943
2944   ;; change default-directory of scratch buffer to projectile-project-root 
2945   (defun sd/project-switch-action ()
2946     "Change default-directory of scratch buffer to current projectile-project-root directory"
2947     (interactive)
2948     (dolist (buffer (buffer-list))
2949       (if (string-match (concat "scratch.*" (projectile-project-name))
2950                         (buffer-name buffer))
2951           (let ((root (projectile-project-root)))
2952             (with-current-buffer buffer
2953               (cd root))))))
2954 #+END_SRC
2955
2956 *** project config =super= keybindings
2957 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2958   ;; (global-set-key (kbd "s-h") 'keyboard-quit)
2959   ;; (global-set-key (kbd "s-j") 'ido-switch-buffer)
2960   ;; (global-set-key (kbd "s-k") 'ido-find-file)
2961   ;; (global-set-key (kbd "s-l") 'sd/delete-current-window)
2962   ;; s-l  -->  goto-line
2963   ;; (global-set-key (kbd "s-/") 'swiper)
2964   ;; s-;  -->
2965   ;; s-'  -->  'next-multiframe-window
2966   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
2967
2968   (global-set-key (kbd "s-f") 'projectile-find-file)
2969   ;; (global-set-key (kbd "s-`") 'mode-line-other-buffer)
2970
2971   ;; (global-set-key (kbd "s-n") 'persp-next)
2972   ;; (global-set-key (kbd "s-p") 'persp-prev)
2973   ;; (global-set-key (kbd "s-;") 'persp-switch-last)
2974
2975   (global-set-key (kbd "s-=") 'text-scale-increase)
2976   (global-set-key (kbd "s--") 'text-scale-decrease)
2977
2978   ;; (global-set-key (kbd "s-u") 'undo-tree-visualize)
2979 #+END_SRC
2980
2981 ** Windown & Buffer - =C-o=
2982 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
2983 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
2984 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2985   (winner-mode 1)
2986
2987   (require 'utilities)
2988   (defhydra sd/hydra-window (:color red :columns nil)
2989     "C-o"
2990     ;; windows switch
2991     ("h" windmove-left nil :exit t)
2992     ("j" windmove-down nil :exit t)
2993     ("k" windmove-up nil :exit t)
2994     ("l" windmove-right nil :exit t)
2995     ("C-o" other-window nil :exit t)
2996     ;; window resize
2997     ("H" hydra-move-splitter-left nil)
2998     ("J" hydra-move-splitter-down nil)
2999     ("K" hydra-move-splitter-up nil)
3000     ("L" hydra-move-splitter-right nil)
3001     ;; windows split
3002     ("v" (lambda ()
3003            (interactive)
3004            (split-window-right)
3005            (windmove-right))
3006      nil :exit t)
3007     ("x" (lambda ()
3008            (interactive)
3009            (split-window-below)
3010            (windmove-down))
3011      nil :exit t)
3012     ;; buffer / windows switch
3013     ("o" sd/toggle-max-windows nil :exit t)
3014     ("C-k" sd/delete-current-window nil :exit t)
3015     ("C-d" (lambda ()
3016              (interactive)
3017              (kill-buffer)
3018              (sd/delete-current-window))
3019      nil :exit t)
3020
3021     ;; ace-window
3022     ;; ("'" other-window "other" :exit t)
3023     ;; ("a" ace-window "ace")
3024     ("s" ace-swap-window nil)
3025     ("D" ace-delete-window nil :exit t)
3026     ;; ("i" ace-maximize-window "ace-one" :exit t)
3027     ;; Windows undo - redo
3028     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) nil)
3029     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) nil)
3030
3031     ;; ibuffer, dired, eshell, bookmarks
3032     ;; ("C-i" other-window nil :exit t)
3033     ("C-b" ido-switch-buffer nil :exit t)
3034     ("C-f" projectile-find-file nil :exit t)
3035     ("C-r" ivy-recentf nil :exit t)
3036     ;; ("C-p" persp-switch nil :exit t)
3037     ;; ("C-t" projectile-persp-switch-project nil :exit t)
3038
3039     ;; other special buffers
3040     ("d" sd/project-or-dired-jump nil :exit t)
3041     ("b" ibuffer nil :exit t)
3042     ("t" multi-term nil :exit t)
3043     ("e" sd/toggle-project-eshell nil :exit t)
3044     ("m" bookmark-jump-other-window nil :exit t)
3045     ("M" bookmark-set nil :exit t)
3046     ("g" magit-status nil :exit t)
3047     ;; ("p" paradox-list-packages nil :exit t)
3048
3049     ;; quit
3050     ("q" nil nil)
3051     ("<ESC>" nil nil)
3052     ("C-h" windmove-left nil :exit t)
3053     ("C-j" windmove-down nil :exit t)
3054     ("C-k" windmove-up nil :exit t)
3055     ("C-l" windmove-right nil :exit t)
3056     ("C-;" nil nil :exit t)
3057     ("n" nil nil :exit t)
3058     ("[" nil nil :exit t)
3059     ("]" nil nil :exit t)
3060     ("f" nil nil))
3061
3062   (global-unset-key (kbd "C-o"))
3063   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
3064
3065   (defun sd/project-or-dired-jump ()
3066     "If under project, jump to the root directory, otherwise
3067   jump to dired of current file"
3068     (interactive)
3069     (if (projectile-project-p)
3070         (projectile-dired)
3071       (dired-jump)))
3072 #+END_SRC
3073
3074 ** Motion
3075 - =C-M-=
3076 [[https://www.masteringemacs.org/article/effective-editing-movement][effective-editing-movement]]
3077 *** Command Arguments, numeric argumens
3078 =C-u 4= same as =C-4=, =M-4=
3079 *** Basic movement
3080 moving by line / word / 
3081 =C-f=, =C-b=, =C-p=, =C-n=, =M-f=, =M-b=
3082 =C-a=, =C-e=
3083 =M-m= (move first non-whitespace on this line) 
3084 =M-}=, =M-{=, Move forward end of paragraph
3085 =M-a=, =M-e=,  beginning / end of sentence
3086 =C-M-a=, =C-M-e=, move begining of defun
3087 =C-x ]=, =C-x [=, forward/backward one page
3088 =C-v=, =M-v=, =C-M-v=, =C-M-S-v= scroll down/up
3089 =M-<=, =M->=, beginning/end of buffer
3090 =M-r=, Repositiong point
3091
3092 *** Moving by S-expression / List
3093 *** Marks
3094 =C-<SPC>= set marks toggle the region
3095 =C-u C-<SPC>= Jump to the mark, repeated calls go further back the mark ring
3096 =C-x C-x= Exchanges the point and mark.
3097
3098 Stolen [[https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode][fixing-mark-commands-transient-mark-mode]]
3099 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3100   (defun push-mark-no-activate ()
3101     "Pushes `point' to `mark-ring' and does not activate the region
3102      Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
3103     (interactive)
3104     (push-mark (point) t nil)
3105     (message "Pushed mark to ring"))
3106
3107   ;; (global-set-key (kbd "C-`") 'push-mark-no-activate)
3108
3109   (defun jump-to-mark ()
3110     "Jumps to the local mark, respecting the `mark-ring' order.
3111     This is the same as using \\[set-mark-command] with the prefix argument."
3112     (interactive)
3113     (set-mark-command 1))
3114
3115   ;; (global-set-key (kbd "M-`") 'jump-to-mark)
3116
3117   (defun exchange-point-and-mark-no-activate ()
3118     "Identical to \\[exchange-point-and-mark] but will not activate the region."
3119     (interactive)
3120     (exchange-point-and-mark)
3121     (deactivate-mark nil))
3122
3123   ;; (define-key global-map [remap exchange-point-and-mark] 'exchange-point-and-mark-no-activate)
3124 #+END_SRC
3125
3126 Show the mark ring using =helm-mark-ring=, also mapping =M-`= to quit minibuffer. so that =M-`= can 
3127 toggle the mark ring. the best way is add a new action and mapping to =helm-source-mark-ring=,  but 
3128 since there is no map such as =helm-mark-ring=map=, so I cannot binding a key to the quit action.
3129 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3130   (setq mark-ring-max 50)
3131
3132   (use-package helm
3133     :ensure t
3134     :init
3135     (global-set-key (kbd "M-`") #'helm-mark-ring))
3136
3137   (define-key minibuffer-local-map (kbd "M-`") 'keyboard-escape-quit)
3138 #+END_SRC
3139
3140 =M-h= marks the next paragraph
3141 =C-x h= marks the whole buffer
3142 =C-M-h= marks the next defun
3143 =C-x C-p= marks the next page
3144 *** Registers
3145 Registers can save text, position, rectangles, file and configuration and other things.
3146 Here for movement, we can use register to save/jump position
3147 =C-x r SPC= store point in register
3148 =C-x r j= jump to register
3149 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3150   (use-package list-register
3151     :ensure t)
3152 #+END_SRC
3153
3154 *** Bookmarks
3155 As I would like use bookmakr for different buffer/files. to help to swith
3156 different buffer/file quickly. this setting is in Windows/buffer node
3157 =C-x r m= set a bookmarks
3158 =C-x r l= list bookmarks
3159 =C-x r b= jump to bookmarks
3160
3161 *** Search
3162 Search, replace and hightlight will in later paragraph
3163 *** =Avy= for easy motion
3164 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3165   (use-package avy
3166     :ensure t
3167     :config
3168     (avy-setup-default))
3169
3170   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
3171   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
3172   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
3173   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
3174
3175   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
3176   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
3177
3178   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3179   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
3180   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
3181
3182   ;; ;; will delete above 
3183   ;; (global-set-key (kbd "M-g j") 'avy-goto-line-below)
3184   ;; (global-set-key (kbd "M-g k") 'avy-goto-line-above)
3185   ;; (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
3186   ;; (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
3187   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3188   ;; (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
3189   ;; (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
3190 #+END_SRC
3191
3192 *** =Imenu= goto tag
3193 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3194   (global-set-key (kbd "M-i") #'counsel-imenu)
3195   ;; (global-set-key (kbd "M-i") #'imenu)
3196
3197   ;; define M-[ as C-M-a
3198   ;; http://ergoemacs.org/emacs/emacs_key-translation-map.html
3199   (define-key key-translation-map (kbd "M-[") (kbd "C-M-a"))
3200   (define-key key-translation-map (kbd "M-]") (kbd "C-M-e"))
3201 #+END_SRC
3202
3203 *** Go-to line
3204 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3205   (global-set-key (kbd "M-l") 'goto-line)
3206 #+END_SRC
3207
3208 ** Edit
3209 *** basic editting
3210 - cut, yank, =C-w=, =C-y=
3211 - save, revert
3212 - undo, redo - undo-tree
3213 - select, expand-region
3214 - spell check, flyspell
3215
3216 *** Kill ring
3217 =helm-show-kill-ring=
3218 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3219   (setq kill-ring-max 100)                ; default is 60p
3220
3221   (use-package helm
3222     :ensure t
3223     :init
3224     (global-set-key (kbd "M-y") #'helm-show-kill-ring))
3225 #+END_SRC
3226
3227 *** undo-tree
3228 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3229   (use-package undo-tree
3230     :ensure t
3231     :config
3232     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
3233     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
3234     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
3235     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
3236     (global-undo-tree-mode 1))
3237
3238   (global-set-key (kbd "s-u") 'undo-tree-visualize)
3239 #+END_SRC
3240
3241 *** flyspell
3242 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
3243 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3244   (setenv "DICPATH" "/usr/local/share/hunspell")
3245
3246   (when (executable-find "hunspell")
3247     (setq-default ispell-program-name "hunspell")
3248     (setq ispell-really-hunspell t))
3249
3250   ;; (defun text-mode-hook-setup ()
3251   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
3252   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
3253   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
3254   ;; (add-hook 'text-mode-hook 'flyspell-mode)
3255
3256   ;; enable flyspell check on comments and strings in progmamming modes
3257   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
3258
3259   ;; I don't use the default mappings
3260   (with-eval-after-load 'flyspell
3261     (define-key flyspell-mode-map (kbd "C-;") nil)
3262     (define-key flyspell-mode-map (kbd "C-,") nil)
3263     (define-key flyspell-mode-map (kbd "C-.") nil))
3264 #+END_SRC
3265
3266 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]]
3267 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3268   ;; NO spell check for embedded snippets
3269   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
3270     (let ((rlt ad-return-value)
3271           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
3272           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
3273           old-flag
3274           b e)
3275       (when ad-return-value
3276         (save-excursion
3277           (setq old-flag case-fold-search)
3278           (setq case-fold-search t)
3279           (setq b (re-search-backward begin-regexp nil t))
3280           (if b (setq e (re-search-forward end-regexp nil t)))
3281           (setq case-fold-search old-flag))
3282         (if (and b e (< (point) e)) (setq rlt nil)))
3283       (setq ad-return-value rlt)))
3284 #+END_SRC
3285
3286 ** Search & Replace / hightlight =M-s=
3287 *** isearch
3288 =C-s=, =C-r=, 
3289 =C-w= add word at point to search string, 
3290 =M-%= query replace
3291 =C-M-y= add character at point to search string
3292 =M-s C-e= add reset of line at point
3293 =C-y= yank from clipboard to search string
3294 =M-n=, =M-p=, history
3295 =C-M-i= complete search string
3296 set the isearch history size, the default is only =16=
3297 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3298   (setq history-length 5000)
3299   (setq regexp-search-ring-max 1000)
3300   (setq search-ring-max 1000)
3301
3302   ;; when search a word or a symbol , also add the word into regexp-search-ring
3303   (defadvice isearch-update-ring (after sd/isearch-update-ring (string &optional regexp) activate)
3304     "Add search-ring to regexp-search-ring"
3305     (unless regexp
3306       (add-to-history 'regexp-search-ring string regexp-search-ring-max)))
3307 #+END_SRC
3308
3309 *** =M-s= prefix
3310 use the prefix =M-s= for searching in buffers
3311 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3312   (defun sd/make-keymap (key bindings)
3313     (setq keymap (make-sparse-keymap))
3314     (dolist (binding bindings)
3315       (define-key keymap (car binding) (cdr binding)))
3316     (global-set-key key keymap))
3317
3318   ;; (sd/make-keymap "\M-s"
3319   ;;                 '(("w" . save-buffer)
3320   ;;                   ;; ("\M-w" . save-buffer)
3321   ;;                   ("e" . revert-buffer)
3322   ;;                   ("s" . isearch-forward-regexp)
3323   ;;                   ("\M-s" . isearch-forward-regexp)
3324   ;;                   ("r" . isearch-backward-regexp)
3325   ;;                   ("." . isearch-forward-symbol-at-point)
3326   ;;                   ("o" . occur)
3327   ;;                   ;; ("h" . highlight-symbol-at-point)
3328   ;;                   ("h" . highlight-symbol)
3329   ;;                   ("m" . highlight-regexp)
3330   ;;                   ("l" . highlight-lines-matching-regexp)
3331   ;;                   ("M" . unhighlight-regexp)
3332   ;;                   ("f" . keyboard-quit)
3333   ;;                   ("q" . keyboard-quit)))
3334 #+END_SRC
3335
3336 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3337   (use-package highlight-symbol
3338     :ensure t)
3339
3340   (defhydra sd/search-replace (:color red :columns nil)
3341     "Search"
3342     ("w" save-buffer "save" :exit t)
3343     ("e" revert-buffer "revert" :exit t)
3344     ("u" undo-tree-visualize "undo" :exit t)
3345     ("s" isearch-forward-regexp "s-search" :exit t)
3346     ("M-s" isearch-forward-regexp "s-search" :exit t)
3347     ("r" isearch-backward-regexp "r-search" :exit t)
3348     ("." isearch-forward-symbol-at-point "search point" :exit t)
3349     ("/" swiper "swiper" :exit t)
3350     ("o" occur "occur" :exit t)
3351     ("h" highlight-symbol "higlight" :exit t)
3352     ("l" highlight-lines-matching-regexp "higlight line" :exit t)
3353     ("m" highlight-regexp "higlight" :exit t)
3354     ("M" unhighlight-regexp "unhiglight" :exit t)
3355     ("q" nil "quit")
3356     ("f" nil))
3357
3358   (global-unset-key (kbd "M-s"))
3359   (global-set-key (kbd "M-s") 'sd/search-replace/body)
3360
3361
3362   ;; search and replace and highlight
3363   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
3364   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
3365   (global-set-key (kbd "s-[") 'highlight-symbol-next)
3366   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
3367   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
3368 #+END_SRC
3369
3370 *** Occur
3371 Occur search key bindings
3372 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3373   (defun sd/occur-keys ()
3374     "My key bindings in occur-mode"
3375     (interactive)
3376     (switch-to-buffer-other-window "*Occur*")
3377     (define-key occur-mode-map (kbd "C-o") nil)
3378     (define-key occur-mode-map (kbd "C-n") (lambda ()
3379                                              (interactive)
3380                                              (occur-next)
3381                                              (occur-mode-goto-occurrence-other-window)
3382                                              (recenter)
3383                                              (other-window 1)))
3384     (define-key occur-mode-map (kbd "C-p") (lambda ()
3385                                              (interactive)
3386                                              (occur-prev)
3387                                              (occur-mode-goto-occurrence-other-window)
3388                                              (recenter)
3389                                              (other-window 1))))
3390
3391   (add-hook 'occur-hook #'sd/occur-keys)
3392
3393   (use-package color-moccur
3394     :ensure t
3395     :commands (isearch-moccur isearch-all)
3396     :init
3397     (setq isearch-lazy-highlight t)
3398     :config
3399     (use-package moccur-edit))
3400 #+END_SRC
3401
3402 *** Swiper
3403 stolen from [[https://github.com/mariolong/emacs.d/blob/f6a061594ef1b5d1f4750e9dad9dc97d6e122840/emacs-init.org][here]]
3404 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3405   (use-package swiper
3406     :ensure t
3407     :init
3408     (setq ivy-use-virtual-buffers t)
3409     (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
3410     :config
3411     (ivy-mode)
3412     (global-set-key (kbd "s-/") 'swiper)
3413     (define-key swiper-map (kbd "M-r") 'swiper-query-replace)
3414     (define-key swiper-map (kbd "C-.") (lambda ()
3415                                          (interactive)
3416                                          (insert (format "%s" (with-ivy-window (thing-at-point 'word))))))
3417     (define-key swiper-map (kbd "M-.") (lambda ()
3418                                          (interactive)
3419                                          (insert (format "%s" (with-ivy-window (thing-at-point 'symbol)))))))
3420 #+END_SRC
3421
3422 ** Expand region map
3423 *** Install =expand-region=
3424 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3425   (use-package expand-region
3426     :ensure t
3427     :config
3428     ;; (global-set-key (kbd "C-=") 'er/expand-region)
3429     )
3430 #+END_SRC
3431
3432 *** Add a =hydra= map for =expand-region= operations
3433 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3434   (defun sd/mark-line ()
3435     "Mark current line without whitespace beginning"
3436     (interactive)
3437     (back-to-indentation)
3438     (set-mark (line-end-position)))
3439
3440   (defhydra sd/expand-selected (:color red :columns nil
3441                                        :post (deactivate-mark)
3442                                        )
3443     "Selected"
3444     ;; select
3445     ;; ("e"  er/expand-region "+")
3446     ("SPC" er/expand-region "+")
3447     ;; ("c"  er/contract-region "-")
3448     ("S-SPC" er/contract-region "-")
3449     ("r" (lambda ()
3450            (interactive)
3451            (er/contract-region 0))
3452      "reset")
3453
3454     ("i'" er/mark-inside-quotes "in")
3455     ("i\"" er/mark-inside-quotes nil)
3456     ("o'" er/mark-outside-quotes "out")
3457     ("o\"" er/mark-outside-quotes nil)
3458
3459     ("i{" er/mark-inside-pairs nil)
3460     ("i(" er/mark-inside-pairs nil)
3461     ("o{" er/mark-inside-pairs nil)
3462     ("o(" er/mark-inside-pairs nil)
3463
3464     ("p" er/mark-paragraph "paragraph")
3465
3466     ("l" sd/mark-line "line")
3467     ("u" er/mark-url "url")
3468     ("f" er/mark-defun "fun")
3469     ("n" er/mark-next-accessor "next")
3470
3471     ("x" exchange-point-and-mark "exchange")
3472
3473     ;; Search
3474     ;; higlight
3475
3476     ;; exit
3477     ("d" kill-region "delete" :exit t)
3478
3479     ("y" kill-ring-save "yank" :exit t)
3480     ("M-SPC" nil "quit" :exit t)
3481     ;; ("C-SPC" "quit" :exit t)
3482     ("q" deactivate-mark "quit" :exit t))
3483
3484   (global-set-key (kbd "M-SPC") (lambda ()
3485                                   (interactive)
3486                                   (set-mark-command nil)
3487                                   ;; (er/expand-region 1)
3488                                   (er/mark-word)
3489                                   (sd/expand-selected/body)))
3490 #+END_SRC
3491
3492 *** TODO make expand-region hydra work with lispy selected
3493 ** =C-w= delete backward word
3494 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]]
3495
3496 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3497   (require 'utilities)
3498   (global-set-key (kbd "C-w") 'sd/kill-region-or-backward-kill-word)
3499 #+END_SRC
3500
3501 * Developing
3502 ** perspeen
3503 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3504   (use-package perspeen
3505     :ensure t
3506     :init
3507     (setq perspeen-use-tab nil)
3508     :config
3509     (perspeen-mode))
3510
3511   ;; super-i to switch to ith workspace
3512
3513   (defmacro sd/define-keys (map key func &rest args)
3514     "A macro to define multi keys "
3515     `(define-key ,map ,key (lambda () (interactive) (,func ,@args))))
3516
3517
3518   (with-eval-after-load "perspeen"
3519     (dotimes (ii 9)
3520       (sd/define-keys perspeen-mode-map (kbd (concat "s-" (number-to-string (+ ii 1))))
3521                       perspeen-goto-ws (+ ii 1)))
3522     (define-key perspeen-mode-map (kbd "s-c") 'perspeen-create-ws)
3523     (define-key perspeen-mode-map (kbd "s-n") 'perspeen-next-ws)
3524     (define-key perspeen-mode-map (kbd "s-p") 'perspeen-previous-ws)
3525     (define-key perspeen-mode-map (kbd "s-'") 'perspeen-last-ws)
3526     (define-key perspeen-mode-map (kbd "s-t") 'perspeen-tab-create-tab)
3527     (define-key perspeen-mode-map (kbd "s-t") 'perspeen-tab-create-tab))
3528 #+END_SRC
3529 * Evil Mode
3530 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3531   (org-babel-load-file "~/.emacs.d/emacs-evil.org")
3532 #+END_SRC
3533
3534
3535 * Note
3536 ** Check if emacs is in terminal of graphic mode
3537 Use =display-graphic-p= instead of =window-system=
3538 [[info:elisp#Window%20Systems][Window Systems]]
3539 ** =Interactive= 
3540 ** List operation
3541 *** add a element to list
3542 - ~add-to-list~ functions, append
3543 - ~push~ macro
3544 - ~(setcdr (last aa) (list element))~
3545 blog with modify list
3546
3547 draw one line top of the windows
3548 * test
3549 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3550   ;; test local mode line
3551   ;; (add-to-list 'load-path "~/.emacs.d/elisp")
3552   ;; (require 'my-mode-line)
3553 #+END_SRC