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