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