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