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