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