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