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