Emacs - add display-graphic-p for some setting
[dotfiles.git] / emacs.d / config.org
1 #+TITLE: Emacs Configuration file
2 #+AUTHOR: Peng Li
3 #+EMAIL: seudut@gmail.com
4
5 * Introduction
6
7 Most config are just copied from [[https://github.com/howardabrams/dot-files][howardabrams]]'s and [[https://github.com/abo-abo/oremacs][abo-abo's]] dotfiles
8
9 * Basic Settings
10 ** Setting loading Path
11 Set system PATH and emacs exec path
12 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
13   (setenv "PATH" (concat (getenv "PATH")
14                          ":" "/usr/local/bin"
15                          ":" "/Library/TeX/texbin"))
16   (setq exec-path (append exec-path '("/usr/local/bin")))
17   (setq exec-path (append exec-path '("/Library/TeX/texbin/")))
18 #+END_SRC
19
20 ** Package Initialization
21 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
22   (require 'package)
23
24   (setq package-archives '(("mepla" . "http://melpa.milkbox.net/packages/")
25                            ("gnu" . "http://elpa.gnu.org/packages/")
26                            ("org" . "http://orgmode.org/elpa/")))
27
28   (package-initialize)
29 #+END_SRC       
30
31 ** My constant
32 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
33   (defconst my-name "Peng Li")
34   (defconst my-email "seudut@gmail.com")
35 #+END_SRC
36
37 ** General Setting
38 *** scroll bar, tool-bar and menu-bar
39 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
40   (if (display-graphic-p)
41       (progn
42         (scroll-bar-mode 0)
43         (tool-bar-mode 0)
44         (menu-bar-mode 1))
45     (menu-bar-mode 0))
46
47   (setq debug-on-error t)
48   (setq inhibit-startup-message t)
49
50   (defalias 'yes-or-no-p 'y-or-n-p)
51   (show-paren-mode 1)
52   ;; don't backupf
53   (setq make-backup-files nil)
54
55   ;;supress the redefined warning at startup
56   (setq ad-redefinition-action 'accept)
57
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     (warn "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-default save-place t)
1462   (setq save-place-forget-unreadable-files t)
1463   (setq save-place-skip-check-regexp "\\`/\\(?:cdrom\\|floppy\\|mnt\\|/[0-9]\\|\\(?:[^@/:]*@\\)?[^@/:]*[^@/:.]:\\)")
1464 #+END_SRC
1465
1466 ** Multi-term
1467 define =multi-term= mapping to disable some mapping which is used globally.
1468 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1469   (use-package multi-term
1470     :ensure t)
1471
1472   (defun sd/term-mode-mapping ()
1473     (mapcar #'(lambda (map)
1474               (define-key map (kbd "C-o") nil)
1475               (define-key map (kbd "C-g") nil))
1476             (list term-mode-map
1477                   term-raw-map)))
1478
1479   (with-eval-after-load 'multi-term
1480     (sd/term-mode-mapping))
1481 #+END_SRC
1482
1483 ** ace-link
1484 [[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
1485 Type =o= to go to the link
1486 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1487   (use-package ace-link
1488     :ensure t
1489     :init
1490     (ace-link-setup-default))
1491 #+END_SRC
1492
1493 ** Smart Parens
1494 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1495   (use-package smartparens
1496     :ensure t
1497     :config
1498     (progn
1499       (require 'smartparens-config)
1500       (add-hook 'prog-mode-hook 'smartparens-mode)))
1501 #+END_SRC
1502
1503 ** Ace-Windows
1504 [[https://github.com/abo-abo/ace-window][ace-window]] 
1505 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1506   (use-package ace-window
1507     :ensure t
1508     :defer t
1509                                           ;  :init
1510                                           ;  (global-set-key (kbd "M-o") 'ace-window)
1511     :config
1512     (setq aw-keys '(?a ?s ?d ?f ?j ?k ?l)))
1513 #+END_SRC
1514
1515 ** Which key
1516 [[https://github.com/justbur/emacs-which-key][which-key]] show the key bindings 
1517 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1518   ;; (use-package which-key
1519   ;;   :ensure t
1520   ;;   :config
1521   ;;   (which-key-mode))
1522 #+END_SRC
1523
1524 ** View only for some directory
1525 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]]
1526 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1527   (dir-locals-set-class-variables
1528    'emacs
1529    '((nil . ((buffer-read-only . t)
1530              (show-trailing-whitespace . nil)
1531              (tab-width . 8)
1532              (eval . (whitespace-mode -1))
1533              ;; (eval . (when buffer-file-name
1534              ;;           (setq-local view-no-disable-on-exit t)
1535              ;;           (view-mode-enter)))
1536              ))))
1537
1538   ;; (dir-locals-set-directory-class (expand-file-name "/usr/local/share/emacs") 'emacs)
1539   (dir-locals-set-directory-class "/usr/local/Cellar/emacs" 'emacs)
1540   ;; (dir-locals-set-directory-class "~/.emacs.d/elpa" 'emacs)
1541   (dir-locals-set-directory-class "~/dotfiles/emacs.d/elpa" 'emacs)
1542   (dir-locals-set-directory-class "~/dotfiles/emacs.d/el-get" 'emacs)
1543
1544   ;; temp-mode.el
1545   ;; Temporary minor mode
1546   ;; Main use is to enable it only in specific buffers to achieve the goal of
1547   ;; buffer-specific keymaps
1548
1549   ;; (defvar sd/temp-mode-map (make-sparse-keymap)
1550   ;;   "Keymap while temp-mode is active.")
1551
1552   ;; ;;;###autoload
1553   ;; (define-minor-mode sd/temp-mode
1554   ;;   "A temporary minor mode to be activated only specific to a buffer."
1555   ;;   nil
1556   ;;   :lighter " Temp"
1557   ;;   sd/temp-mode-map)
1558
1559   ;; (defun sd/temp-hook ()
1560   ;;   (if sd/temp-mode
1561   ;;       (progn
1562   ;;      (define-key sd/temp-mode-map (kbd "q") 'quit-window))))
1563
1564   ;; (add-hook 'lispy-mode-hook (lambda ()
1565   ;;                           (sd/temp-hook)))
1566 #+END_SRC
1567
1568 ** Info plus
1569 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1570   (el-get-bundle info+
1571     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/info+.el"
1572     ;; (require 'info+)
1573     )
1574
1575   (with-eval-after-load 'info
1576     (require 'info+))
1577 #+END_SRC
1578
1579 ** advice info
1580 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1581   (defun sd/info-mode ()
1582     (interactive)
1583     (unless (equal major-mode 'Info-mode)
1584       (unless (> (length (window-list)) 1)
1585         (split-window-right))
1586       (other-window 1)))
1587
1588   ;; open Info buffer in other window instead of current window
1589   (defadvice info (before my-info (&optional file buf) activate)
1590     (sd/info-mode))
1591
1592   (defadvice Info-exit (after my-info-exit activate)
1593     (sd/delete-current-window))
1594 #+END_SRC
1595
1596 ** Demo It
1597 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1598   (use-package org-tree-slide
1599     :ensure t)
1600 #+END_SRC
1601
1602 ** Presentation
1603 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1604   (use-package org-tree-slide
1605     :ensure
1606     :config
1607     ;; (define-key org-mode-map "\C-ccp" 'org-tree-slide-mode)
1608     (define-key org-tree-slide-mode-map (kbd "<ESC>") 'org-tree-slide-content)
1609     (define-key org-tree-slide-mode-map (kbd "<SPACE>") 'org-tree-slide-move-next-tree)
1610     (define-key org-tree-slide-mode-map [escape] 'org-tree-slide-move-previous-tree))
1611 #+END_SRC
1612
1613 ** pdf-tools
1614 #+BEGIN_SRC sh
1615   #brew install poppler
1616 #+END_SRC
1617
1618 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1619   ;(use-package pdf-tools
1620   ;  :ensure t
1621   ;  :init
1622   ;  ;; run to complete the installation
1623   ;  (pdf-tools-install)
1624   ;  :config
1625   ;  (add-to-list 'auto-mode-alist '("\.pdf$" . pdf-view-mode))
1626   ;  (add-hook 'pdf-outline-buffer-mode-hook #'sd/pdf-outline-map))
1627
1628   ;(defun sd/pdf-outline-map ()
1629   ;  "My keybindings in pdf-outline-map"
1630   ;  (interactive)
1631   ;  (define-key pdf-outline-buffer-mode-map (kbd "C-o") nil)
1632   ;  (define-key pdf-outline-buffer-mode-map (kbd "i") 'outline-toggle-children)
1633   ;  (define-key pdf-outline-buffer-mode-map (kbd "j") 'next-line)
1634    ; (define-key pdf-outline-buffer-mode-map (kbd "k") 'previous-line))
1635 #+END_SRC
1636
1637 ** help-mode
1638 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1639   (defun sd/help-mode-hook ()
1640     "Mapping for help mode"
1641     (define-key help-mode-map "j" 'next-line)
1642     (define-key help-mode-map "k" 'previous-line)
1643     (define-key help-mode-map "h" 'forward-char)
1644     (define-key help-mode-map "l" 'forward-char)
1645     (define-key help-mode-map "H" 'describe-mode)
1646     (define-key help-mode-map "v" 'recenter-top-bottom)
1647     (define-key help-mode-map "i" 'forward-button)
1648     (define-key help-mode-map "I" 'backward-button)
1649     (define-key help-mode-map "o" 'ace-link-help))
1650
1651   (add-hook 'help-mode-hook 'sd/help-mode-hook)
1652 #+END_SRC
1653
1654 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=
1655
1656 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1657   (el-get-bundle help-macro+
1658     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help-macro+.el"
1659     :features help-macro+)
1660   (el-get-bundle help+
1661     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help+.el"
1662     :features help+)
1663   (el-get-bundle help-fns+
1664     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help-fns+.el"
1665     :features help-fns+)
1666   (el-get-bundle help-mode+
1667     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help-mode+.el"
1668     :features help-mode+)
1669 #+END_SRC
1670
1671 ** goto-last-change
1672 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1673   (use-package goto-last-change
1674     :ensure t)
1675 #+END_SRC
1676
1677 ** Ag
1678 install =ag=, =the-silver-searcher= by homebrew on mac
1679 #+BEGIN_SRC sh
1680 brew install the-silver-searcher
1681 #+END_SRC
1682
1683 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1684   (use-package ag
1685     :ensure t)
1686 #+END_SRC
1687
1688 ** Local Variable hooks
1689 [[https://www.emacswiki.org/emacs/LocalVariables][LocalVariables]], use =hack-local-variables-hook=, run a hook to set local variable in mode hook
1690 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1691   ;; make Emacs run a new "local variables hook" for each major mode
1692   (add-hook 'hack-local-variables-hook 'run-local-vars-mode-hook)
1693
1694   (defun run-local-vars-mode-hook ()
1695     "Run a hook for the major-mode after the local variables have been processed."
1696     (run-hooks (intern (concat (symbol-name major-mode) "-local-vars-hook"))))
1697
1698   ;;   (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
1699 #+END_SRC
1700
1701 ** Table
1702 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1703   (add-hook 'text-mode-hook 'table-recognize)
1704 #+END_SRC
1705
1706 ** url-download
1707 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
1708 as a http download client tool
1709 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1710   (defun sd/download-file (&optional url download-dir download-name)
1711     (interactive)
1712     (let ((url (or url
1713                    (read-string "Enter download URL: ")))
1714           (download-dir (read-directory-name "Save to (~/Downloads): " "~/Downloads" "~/Downloads" 'confirm' nil)))
1715       (let ((download-buffer (url-retrieve-synchronously url)))
1716         (save-excursion
1717           (set-buffer download-buffer)
1718           ;; we may have to trim the http response
1719           (goto-char (point-min))
1720           (re-search-forward "^$" nil 'move)
1721           (forward-char)
1722           (delete-region (point-min) (point))
1723           (write-file (concat (or download-dir
1724                                   "~/Downloads/")
1725                               (or download-name
1726                                   (car (last (split-string url "/" t))))))))))
1727 #+END_SRC
1728
1729 ** Elscreen
1730 Fix one elscreen issue when startup emacs https://github.com/knu/elscreen/issues/6
1731 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1732   ;; (use-package elscreen
1733   ;;   :ensure t
1734   ;;   :init
1735   ;;   (setq elscreen-tab-display-control nil)
1736   ;;   :config
1737   ;;   ;; (elscreen-start)
1738   ;;   (set-face-attribute 'elscreen-tab-current-screen-face nil :foreground "black" :background "yellow")
1739   ;;   (set-face-attribute 'elscreen-tab-other-screen-face nil :foreground "black" :background "disabledControlTextColor" :underline nil)
1740   ;;   ;; (global-unset-key (kbd)); M-TAB switch screen
1741   ;;   ;; (global-set-key (kbd "s-`") '(lambda () (interactive) (elscreen-goto 0)))
1742   ;;   ;; (dotimes (i 8)
1743   ;;   ;;   (global-set-key (kbd (concat "s-" (number-to-string (+ i 1))))
1744   ;;   ;;                   `(lambda () (interactive) (elscreen-goto ,(+ i 1)))))
1745   ;;   ;; (global-set-key (kbd "s-t") 'elscreen-create)
1746   ;;   ;; (global-set-key (kbd "s-n") 'elscreen-next)
1747   ;;   ;; (global-set-key (kbd "s-p") 'elscreen-previous)
1748   ;;   )
1749 #+END_SRC
1750
1751 * Dired
1752 ** Dired bindings
1753 =C-o= is defined as a global key for window operation, here unset it in dired mode
1754 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1755   (defun sd/dired-key-map ()
1756     "My keybindings for dired"
1757     (interactive)
1758     ;; these two prefix are used globally
1759     (define-key dired-mode-map (kbd "C-o") nil)
1760     (define-key dired-mode-map (kbd "M-s") nil)
1761     ;; toggle hidden files
1762     (define-key dired-mode-map (kbd "H") 'dired-omit-mode)
1763     ;; scroll 
1764     (define-key dired-mode-map (kbd "SPC") 'scroll-up-command)
1765     (define-key dired-mode-map (kbd "DEL") 'scroll-down-command)
1766     (define-key dired-mode-map (kbd "j") 'diredp-next-line)
1767     (define-key dired-mode-map (kbd "k") 'diredp-previous-line)
1768     (define-key dired-mode-map (kbd "g") 'dired-goto-file)
1769     ;; (define-key dired-mode-map (kbd "S-SPC") 'scroll-down-command)
1770     ;; jump to fil/dirs
1771     (define-key dired-mode-map (kbd "f") 'dired-isearch-filenames)
1772     ;; subdir
1773     ;; i dired-maybe-insert-subdir
1774     ;; o dired-find-file-other-window (switch to other window)
1775     ;; O dired-display-file
1776     (define-key dired-mode-map (kbd "G") 'ido-dired)
1777     (define-key dired-mode-map (kbd "c") 'sd/dired-new-file)
1778     (define-key dired-mode-map (kbd "h") 'dired-summary)
1779     (define-key dired-mode-map (kbd "r") 'revert-buffer)
1780     (define-key dired-mode-map (kbd "l") 'dired-display-file)
1781     (define-key dired-mode-map [C-backspace] 'dired-up-directory)
1782     (define-key dired-mode-map (kbd "?") 'describe-mode)
1783     (define-key dired-mode-map (kbd "z") #'sd/dired-get-size)
1784     (define-key dired-mode-map (kbd "C-d") 'dired-kill-subdir)
1785     (define-key dired-mode-map (kbd "M-d") 'dired-kill-subdir)
1786     (define-key dired-mode-map (kbd "J") 'diredp-next-subdir)
1787     (define-key dired-mode-map (kbd "TAB") 'diredp-next-subdir)
1788     (define-key dired-mode-map (kbd "K") 'diredp-prev-subdir)
1789     (define-key dired-mode-map (kbd "O") 'dired-display-file)
1790     (define-key dired-mode-map (kbd "I") 'other-window)
1791     (define-key dired-mode-map (kbd "o") 'other-window)) 
1792
1793   (use-package dired
1794     :config
1795     (require 'dired-x)
1796     ;; also load dired+
1797     (use-package dired+
1798       :ensure t
1799       :init (setq diredp-hide-details-initially-flag nil))
1800     
1801     (setq dired-omit-mode t)
1802     (setq dired-omit-files (concat dired-omit-files "\\|^\\..+$"))
1803     (add-hook 'dired-mode-hook (lambda ()
1804                                  (sd/dired-key-map)
1805                                  (dired-omit-mode))))
1806
1807   (defadvice dired-summary (around sd/dired-summary activate)
1808     "Revisied dired summary."
1809     (interactive)
1810     (dired-why)
1811     (message
1812      "Δ: 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"))
1813
1814   (defun sd/dired-high-level-dir ()
1815     "Go to higher level directory"
1816     (interactive)
1817     (find-alternate-file ".."))
1818 #+END_SRC
1819
1820 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1821   (defun sd/dired-new-file-and-open ()
1822     "Create a new file in dired mode"
1823     (interactive)
1824     (call-interactively 'find-file))
1825
1826   (defun sd/dired-new-file (file)
1827     "Create a new file called FILE.
1828   If FILE already exists, signal an error."
1829     (interactive
1830      (list (read-file-name "Create file: " (dired-current-directory))))
1831     (let* ((expanded (expand-file-name file)))
1832       (if (file-exists-p expanded)
1833           (error "Cannot create file %s: file exists" expanded))
1834       (write-region "" nil expanded t)
1835       (when expanded
1836         (dired-add-file expanded)
1837         (dired-move-to-filename))))
1838
1839   ;; copied from abo-abo's config
1840   (defun sd/dired-get-size ()
1841     (interactive)
1842     (let ((files (dired-get-marked-files)))
1843       (with-temp-buffer
1844         (apply 'call-process "/usr/bin/du" nil t nil "-sch" files)
1845         (message
1846          "Size of all marked files: %s"
1847          (progn
1848            (re-search-backward "\\(^[ 0-9.,]+[A-Za-z]+\\).*total$")
1849            (match-string 1))))))
1850 #+END_SRC
1851
1852 ** disable ido when dired new file
1853 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
1854 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’]]
1855 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1856   (defun mk-anti-ido-advice (func &rest args)
1857     "Temporarily disable IDO and call function FUNC with arguments ARGS."
1858     (interactive)
1859     (let ((read-file-name-function #'read-file-name-default)
1860           (completing-read-function #'completing-read-default))
1861       (if (called-interactively-p 'any)
1862           (call-interactively func)
1863         (apply func args))))
1864
1865   (defun mk-disable-ido (command)
1866     "Disable IDO when command COMMAND is called."
1867     (advice-add command :around #'mk-anti-ido-advice))
1868
1869   (defun mk-anti-ido-no-completing-advice (func &rest args)
1870     "Temporarily disable IDO and call function FUNC with arguments ARGS."
1871     (interactive)
1872     (let ((read-file-name-function #'read-file-name-default)
1873           ;; (completing-read-function #'completing-read-default)
1874           )
1875       (if (called-interactively-p 'any)
1876           (call-interactively func)
1877         (apply func args))))
1878
1879   (defun mk-disable-ido-no-completing (command)
1880     "Disable IDO when command COMMAND is called."
1881     (advice-add command :around #'mk-anti-ido-no-completing-advice))
1882 #+END_SRC
1883
1884 Disalble =ido= when new a directory or file in =dired= mode
1885 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1886   ;; call the function which you want to disable ido
1887   (mk-disable-ido 'dired-create-directory)
1888   (mk-disable-ido 'sd/dired-new-file-and-open)
1889   (mk-disable-ido 'sd/dired-new-file)
1890   (mk-disable-ido-no-completing 'dired-goto-file)
1891 #+END_SRC
1892
1893 ** Dired open with
1894 =!= =dired-do-shell-command=
1895 =&= =dired-do-async-shell-command=
1896 here on Mac, just use "open" commands to pen =.pdf=,  =.html= and image files
1897 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1898   (setq dired-guess-shell-alist-user
1899         '(("\\.pdf\\'" "open" "okular")
1900           ("\\.\\(?:djvu\\|eps\\)\\'" "evince")
1901           ("\\.\\(?:jpg\\|jpeg\\|png\\|gif\\|xpm\\)\\'" "open")
1902           ("\\.\\(?:xcf\\)\\'" "gimp")
1903           ("\\.csv\\'" "libreoffice")
1904           ("\\.tex\\'" "pdflatex" "latex")
1905           ("\\.\\(?:mp4\\|mkv\\|avi\\|rmvb\\|flv\\|ogv\\)\\(?:\\.part\\)?\\'" "mplayer")
1906           ("\\.\\(?:mp3\\|flac\\)\\'" "rhythmbox")
1907           ("\\.html?\\'" "open")
1908           ("\\.dmg\\'" "open")
1909           ("\\.cue?\\'" "audacious")))
1910
1911
1912   (defun sd/dired-start-process (cmd &optional file-list)
1913     (interactive
1914      (let ((files (dired-get-marked-files
1915                    t current-prefix-arg)))
1916        (list
1917         (unless (eq system-type 'windows-nt)
1918           (dired-read-shell-command "& on %s: "
1919                                     current-prefix-arg files))
1920         files)))
1921     
1922     (if (eq system-type 'windows-nt)
1923         (dolist (file file-list)
1924           (w32-shell-execute "open" (expand-file-name file)))
1925       (let (list-switch)
1926         (start-process
1927          cmd nil shell-file-name
1928          shell-command-switch
1929          (format
1930           "nohup 1>/dev/null 2>/dev/null %s \"%s\""
1931           cmd
1932           ;; (if (and (> (length file-list) 1)
1933           ;;          (setq list-switch
1934           ;;                (cadr (assoc cmd ora-dired-filelist-cmd))))
1935           ;;     (format "%s %s" cmd list-switch)
1936           ;;   cmd)
1937           (mapconcat #'expand-file-name file-list "\" \""))))))
1938 #+END_SRC
1939
1940 ** dired-hacks
1941 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1942   (use-package dired-hacks-utils
1943     :ensure t
1944     :defer t)
1945 #+END_SRC
1946
1947 ** dired-narrow
1948 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1949   ;;narrow dired to match filter
1950   (use-package dired-narrow
1951     :ensure t
1952     :commands (dired-narrow)
1953     :bind (:map dired-mode-map
1954                 ("/" . dired-narrow)))
1955 #+END_SRC
1956
1957 * Ibuffer
1958 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1959   (global-set-key (kbd "s-b") 'ibuffer)
1960
1961   (with-eval-after-load 'ibuffer
1962     (define-key ibuffer-mode-map (kbd "C-o") nil)
1963     (define-key ibuffer-mode-map (kbd "j") 'ibuffer-forward-line)
1964     (define-key ibuffer-mode-map (kbd "k") 'ibuffer-backward-line)
1965     (define-key ibuffer-mode-map (kbd "r") 'ibuffer-update)
1966     (define-key ibuffer-mode-map (kbd "g") 'ibuffer-jump-to-buffer)
1967     (define-key ibuffer-mode-map (kbd "h") 'sd/ibuffer-summary))
1968
1969   (defun sd/ibuffer-summary ()
1970     "Show summary of keybindings in ibuffer mode"
1971     (interactive)
1972     (message
1973      "Β: m|u - (un)mark, /-filter, //-remove filter, t, RET, g, k, S, D, Q; q to quit; h for help"))
1974 #+END_SRC
1975
1976 * Completion
1977 ** company mode and company-statistics
1978 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1979   (use-package company
1980     :ensure t
1981     :diminish company-mode
1982     :init (setq company-idle-delay 0.1)
1983     (setq company-selection-wrap-around t)
1984     :config
1985     (define-key company-active-map (kbd "M-n") nil)
1986     (define-key company-active-map (kbd "M-p") nil)
1987     (define-key company-active-map (kbd "SPC") #'sd/company-stop-input-space)
1988     (define-key company-active-map (kbd "C-n") #'company-select-next)
1989     (define-key company-active-map (kbd "C-p") #'company-select-previous)
1990     ;; should map both (kbd "TAB") and [tab],https://github.com/company-mode/company-mode/issues/75
1991     (define-key company-active-map (kbd "TAB") #'company-complete-selection)
1992     (define-key company-active-map [tab] #'company-complete-selection)
1993     (define-key company-active-map (kbd "C-w") nil)
1994     (define-key company-active-map (kbd "C-h") nil)
1995     (global-company-mode)
1996     ;; magig-commit is text-modeh
1997     (setq company-global-modes '(not org-mode magit-status-mode text-mode eshell-mode gfm-mode markdown-mode)))
1998
1999   (use-package company-statistics
2000     :ensure t
2001     :config
2002     (company-statistics-mode))
2003
2004   (defun sd/company-stop-input-space ()
2005     "Stop completing and input a space,a workaround of a semantic issue `https://github.com/company-mode/company-mode/issues/614'"
2006     (interactive)
2007     (company-abort)
2008     (insert " "))
2009 #+END_SRC
2010
2011 ** YASnippet
2012 *** yasnippet
2013 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2014   (use-package yasnippet
2015     :ensure t
2016     :defer t
2017     :init
2018     (add-hook 'prog-mode-hook #'yas-minor-mode)
2019     :config
2020     (yas-reload-all))
2021 #+END_SRC
2022
2023
2024 ** company and yasnippet
2025 Add yasnippet as the company candidates
2026 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2027   ;Add yasnippet support for all company backends
2028   ;https://github.com/syl20bnr/spacemacs/pull/179
2029   (defvar company-mode/enable-yas t
2030     "Enable yasnippet for all backends.")
2031
2032   (defun company-mode/backend-with-yas (backend)
2033     (if (or (not company-mode/enable-yas) (and (listp backend) (member 'company-yasnippet backend)))
2034         backend
2035       (append (if (consp backend) backend (list backend))
2036               '(:with company-yasnippet))))
2037
2038   (setq company-backends (mapcar #'company-mode/backend-with-yas company-backends))
2039 #+END_SRC
2040
2041 Refer, [[http://emacs.stackexchange.com/questions/7908/how-to-make-yasnippet-and-company-work-nicer][how-to-make-yasnippet-and-company-work-nicer]]
2042 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2043   (defun check-expansion ()
2044     (save-excursion
2045       (if (looking-at "\\_>") t
2046         (backward-char 1)
2047         (if (looking-at "\\.") t
2048           (backward-char 1)
2049           (if (looking-at "->") t nil)))))
2050
2051   (defun do-yas-expand ()
2052     (let ((yas/fallback-behavior 'return-nil))
2053       (yas/expand)))
2054
2055   (defun tab-indent-or-complete ()
2056     (interactive)
2057     (cond
2058      ((minibufferp)
2059       (minibuffer-complete))
2060      (t
2061       (indent-for-tab-command)
2062       (if (or (not yas/minor-mode)
2063               (null (do-yas-expand)))
2064           (if (check-expansion)
2065               (progn
2066                 (company-manual-begin)
2067                 (if (null company-candidates)
2068                     (progn
2069                       (company-abort)
2070                       (indent-for-tab-command)))))))))
2071
2072   (defun tab-complete-or-next-field ()
2073     (interactive)
2074     (if (or (not yas/minor-mode)
2075             (null (do-yas-expand)))
2076         (if company-candidates
2077             (company-complete-selection)
2078           (if (check-expansion)
2079               (progn
2080                 (company-manual-begin)
2081                 (if (null company-candidates)
2082                     (progn
2083                       (company-abort)
2084                       (yas-next-field))))
2085             (yas-next-field)))))
2086
2087   (defun expand-snippet-or-complete-selection ()
2088     (interactive)
2089     (if (or (not yas/minor-mode)
2090             (null (do-yas-expand))
2091             (company-abort))
2092         (company-complete-selection)))
2093
2094   (defun abort-company-or-yas ()
2095     (interactive)
2096     (if (null company-candidates)
2097         (yas-abort-snippet)
2098       (company-abort)))
2099
2100   '
2101   ;; (require 'company)
2102   ;; (require 'yasnippet)
2103
2104
2105   ;; (global-set-key [tab] 'tab-indent-or-complete)
2106   ;; (global-set-key (kbd "TAB") 'tab-indent-or-complete)
2107   ;; (global-set-key [(control return)] 'company-complete-common)
2108
2109   ;; (define-key company-active-map [tab] 'expand-snippet-or-complete-selection)
2110   ;; (define-key company-active-map (kbd "TAB") 'expand-snippet-or-complete-selection)
2111
2112   ;; (define-key yas-minor-mode-map [tab] nil)
2113   ;; (define-key yas-minor-mode-map (kbd "TAB") nil)
2114
2115   ;; (define-key yas-keymap [tab] 'tab-complete-or-next-field)
2116   ;; (define-key yas-keymap (kbd "TAB") 'tab-complete-or-next-field)
2117   ;; (define-key yas-keymap [(control tab)] 'yas-next-field)
2118   ;; (define-key yas-keymap (kbd "C-g") 'abort-company-or-yas)
2119 #+END_SRC
2120
2121 * Libs
2122 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2123   (use-package s
2124     :ensure t)
2125 #+END_SRC
2126
2127 * Programming Language
2128 ** Emacs Lisp
2129 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2130   (use-package color-identifiers-mode
2131     :ensure t
2132     :init
2133     (add-hook 'emacs-lisp-mode-hook 'color-identifiers-mode)
2134
2135     :diminish color-identifiers-mode)
2136
2137   (global-prettify-symbols-mode t)
2138 #+END_SRC
2139
2140 In Lisp Mode, =M-o= is defined, but I use this for global hydra window. So here disable this key
2141 bindings in =lispy-mode-map= after loaded. see [[http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings][here]]
2142 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2143   (use-package lispy
2144     :ensure t
2145     :init
2146     (setq lispy-delete-backward-recenter 0)
2147     (with-eval-after-load "lispy"
2148       (define-key lispy-mode-map (kbd "M-o") nil)
2149       (define-key lispy-mode-map (kbd "g") 'special-lispy-goto-local)
2150       (define-key lispy-mode-map (kbd "G") 'special-lispy-goto)
2151       (define-key lispy-mode-map (kbd "M-m") 'back-to-indentation))
2152     :config
2153     (add-hook 'emacs-lisp-mode-hook (apply-partially #'lispy-mode 1)))
2154 #+END_SRC
2155
2156 ** Perl
2157 *** CPerl mode
2158 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
2159 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2160   (defalias 'perl-mode 'cperl-mode)
2161
2162   ;; (setq cperl-hairy t)
2163   ;; Turns on most of the CPerlMode options
2164   (setq cperl-auto-newline t)
2165   (setq cperl-highlight-variables-indiscriminately t)
2166   ;(setq cperl-indent-level 4)
2167   ;(setq cperl-continued-statement-offset 4)
2168   (setq cperl-close-paren-offset -4)
2169   (setq cperl-indent-parents-as-block t)
2170   (setq cperl-tab-always-indent t)
2171   ;(setq cperl-brace-offset  0)
2172
2173   (add-hook 'cperl-mode-hook (apply-partially #'cperl-set-style "C++"))
2174
2175   (defalias 'perldoc 'cperl-perldoc)
2176 #+END_SRC
2177
2178 *** Perl template
2179 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
2180 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2181   (eval-after-load 'autoinsert
2182     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
2183        '(
2184          "Empty"
2185          "#!/usr/bin/perl -w" \n
2186          \n
2187          "use strict;" >  \n \n
2188          > _
2189          )))
2190 #+END_SRC
2191
2192 *** Perl Keywords
2193 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2194   (font-lock-add-keywords 'cperl-mode
2195                           '(("\\(say\\)" . cperl-nonoverridable-face)
2196                             ("\\([0-9.]\\)*" . font-lock-constant-face)
2197                             ("\".*\\(\\\n\\).*\"" . font-lock-constant-face)
2198                             ("\n" . font-lock-constant-face)
2199                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
2200
2201     ;; (font-lock-add-keywords 'Man-mode
2202     ;;                         '(("\\(NAME\\)" . font-lock-function-name-face)))
2203
2204 #+END_SRC
2205
2206 ** C & C++
2207 C/C++ ide tools
2208 1. completion (file name, function name, variable name)
2209 2. template yasnippet (keywords, if, function)
2210 3. tags jump
2211 *** c/c++ style
2212 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2213   (setq c-default-style "stroustrup"
2214         c-basic-offset 4)
2215
2216   ;; "C-M-j" is my global binding for avy goto line below
2217   ;; disable it in c mode
2218   (mapcar #'(lambda (map)
2219              (define-key map (kbd "C-M-j") nil))
2220           (list c-mode-map
2221                 c++-mode-map
2222                 objc-mode-map))
2223
2224   ;; objective c
2225   (add-to-list 'auto-mode-alist '("\\.mm\\'" . objc-mode))
2226 #+END_SRC
2227
2228 *** irony
2229 **** install irony server
2230 Install clang, on mac, it has =libclang.dylib=, but no develop headers. Install by =brew=
2231 #+BEGIN_SRC sh
2232   brew install llvm --with-clang
2233 #+END_SRC
2234
2235 then install irony searver, and =LIBCLANG_LIBRARY= and =LIBCLANG_INCLUDE_DIR= accordingly
2236 #+BEGIN_SRC emacs-lisp :tangle no :results silent
2237   (irony-install-server)
2238 #+END_SRC
2239
2240 #+BEGIN_SRC sh
2241   cmake -DLIBCLANG_LIBRARY\=/usr/local/Cellar/llvm/4.0.1/lib/libclang.dylib \
2242         -DLIBCLANG_INCLUDE_DIR=/usr/local/Cellar/llvm/4.0.1/include \
2243         -DCMAKE_INSTALL_PREFIX\=/Users/peng/.emacs.d/irony/ \
2244         /Users/peng/.emacs.d/elpa/irony-20160713.1245/server && cmake --build . --use-stderr --config Release --target install 
2245 #+END_SRC
2246
2247 **** irony config
2248 irony-mode-hook, copied from [[https://github.com/Sarcasm/irony-mode][irony-mode]] github
2249 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2250   (use-package irony
2251     :ensure t
2252     :config
2253     (add-hook 'c++-mode-hook 'irony-mode)
2254     (add-hook 'c-mode-hook 'irony-mode)
2255     (add-hook 'objc-mode-hook 'irony-mode))
2256
2257   ;; replace the `completion-at-point' and `complete-symbol' bindings in
2258   ;; irony-mode's buffers by irony-mode's function
2259
2260   (defun my-irony-mode-hook ()
2261     (define-key irony-mode-map [remap completion-at-point]
2262       'irony-completion-at-point-async)
2263     (define-key irony-mode-map [remap complete-symbol]
2264       'irony-completion-at-point-async))
2265
2266   (add-hook 'irony-mode-hook 'my-irony-mode-hook)
2267   (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)
2268
2269   (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
2270
2271   ;; add C++ completions, because by default c++ file can not complete
2272   ;; c++ std functions, another method is create .dir-local.el file, for p
2273   ;; for project see irony
2274   (defun sd/c++-mode-local-vars ()
2275     (setq irony--compile-options
2276         '("-std=c++11"
2277           "-stdlib=libc++"
2278           "-I/usr/include/c++/4.2.1")))
2279 #+END_SRC
2280
2281 irony-company
2282 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2283   (use-package company-irony
2284     :ensure t)
2285
2286   (use-package flycheck-irony
2287     :ensure t)
2288
2289   (use-package company-c-headers
2290     :ensure t
2291     :config
2292     (add-to-list 'company-c-headers-path-system "/usr/include/c++/4.2.1/")
2293     (add-to-list 'company-c-headers-path-system "/usr/local/include/"))
2294
2295   ;; (with-eval-after-load 'company
2296   ;;   (add-to-list 'company-backends 'company-irony)
2297   ;;   (add-to-list 'company-backends 'company-c-headers))
2298
2299   (with-eval-after-load 'company
2300     (push  '(company-irony :with company-yasnippet) company-backends)
2301     (push  '(company-c-headers :with company-yasnippet) company-backends))
2302
2303   (with-eval-after-load 'flycheck
2304     (add-hook 'flycheck-mode-hook #'flycheck-irony-setup))
2305 #+END_SRC
2306
2307 *** flycheck
2308 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2309   (use-package flycheck
2310     :ensure t)
2311 #+END_SRC
2312
2313 *** gtags
2314 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2315   (use-package ggtags
2316     :ensure t
2317     :config
2318     (define-key ggtags-mode-map (kbd "M-g d") 'ggtags-find-definition)
2319     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2320     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2321     (define-key ggtags-mode-map (kbd "C-c g s") 'ggtags-find-other-symbol)
2322     (define-key ggtags-mode-map (kbd "C-c g h") 'ggtags-view-tag-history)
2323     (define-key ggtags-mode-map (kbd "C-c g r") 'ggtags-find-reference)
2324     (define-key ggtags-mode-map (kbd "C-c g f") 'ggtags-find-file)
2325     (define-key ggtags-mode-map (kbd "C-c g c") 'ggtags-create-tags)
2326     (define-key ggtags-mode-map (kbd "C-c g u") 'ggtags-update-tags))
2327
2328   (add-hook 'c-mode-common-hook
2329             (lambda ()
2330               (when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
2331                 (ggtags-mode 1))))
2332
2333   (require 'cc-mode)
2334   (require 'semantic)
2335
2336   (global-semanticdb-minor-mode 1)
2337   (global-semantic-idle-scheduler-mode 1)
2338
2339   (semantic-mode 1)
2340 #+END_SRC
2341
2342 *** google C style
2343 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2344   ;; (use-package google-c-style
2345   ;;   :ensure t
2346   ;;   :config
2347   ;;   (add-hook 'c-mode-hook 'google-set-c-style)
2348   ;;   (add-hook 'c++-mode-hook 'google-set-c-style))
2349 #+END_SRC
2350
2351 *** Compile and Run the C file
2352 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2353   (defun my-cpp-hook ()
2354     (let* ((current-file-name)
2355            (out-file-name))
2356       (when buffer-file-name
2357         (setq current-file-name (shell-quote-argument buffer-file-name))
2358         (setq out-file-name (shell-quote-argument (concat (file-name-sans-extension buffer-file-name) ".out"))))
2359       (setq-local compilation-read-command t)
2360       (set (make-local-variable 'compile-command)
2361            (concat "g++ -Wall "
2362                    current-file-name
2363                    " -o "
2364                    out-file-name
2365                    " && "
2366                    out-file-name
2367                    ))
2368       (local-set-key (kbd "s-r") 'compile)))
2369
2370   (add-hook 'c-mode-hook 'my-cpp-hook)
2371   (add-hook 'c++-mode-hook 'my-cpp-hook)
2372 #+END_SRC
2373
2374 ** Lua
2375 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2376   (use-package lua-mode
2377     :ensure t)
2378 #+END_SRC
2379
2380 ** Scheme
2381 Install =guile=, =guile= is an implementation of =Scheme= programming language.
2382 #+BEGIN_SRC sh
2383   brew install guile
2384 #+END_SRC
2385
2386 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2387   (setq geiser-scheme-implementation 'guile)
2388 #+END_SRC
2389
2390 #+BEGIN_SRC scheme
2391   (define a "3")
2392   a
2393 #+END_SRC
2394
2395 #+RESULTS:
2396 : 3
2397
2398 ** Racket
2399 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2400   (use-package racket-mode
2401     :ensure t
2402     :config
2403     (define-key racket-mode-map (kbd "s-r") 'racket-run)
2404     (add-to-list 'racket-mode-hook (lambda () (lispy-mode 1))))
2405
2406   ;; set racket path
2407   (setenv "PATH" (concat (getenv "PATH")
2408                          ":" "/Applications/Racket v6.6/bin"))
2409   (setenv "MANPATH" (concat (getenv "MANPATH")
2410                             ":" "/Applications/Racket v6.6/man"))
2411   (setq exec-path (append exec-path '("/Applications/Racket v6.6/bin")))
2412
2413   (add-to-list 'auto-mode-alist '("\\.rkt\\'" . racket-mode))
2414 #+END_SRC
2415
2416 * Compile
2417 Set the environments vairables in compilation mode
2418 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2419   (use-package compile
2420     :commands compile
2421     :config
2422     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
2423     (setq compilation-auto-jump-to-first-error t)
2424     (setq compilation-auto-jump-to-next t)
2425     (setq compilation-scroll-output 'first-error)
2426     ;; this will save all the modified buffers before compile
2427     (setq compilation-ask-about-save nil))
2428
2429   ;; super-r to compile
2430   (with-eval-after-load "compile"
2431     (define-key compilation-mode-map (kbd "C-o") nil)
2432     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
2433     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
2434     (define-key compilation-mode-map (kbd "q") (lambda () (interactive) (quit-window t)))
2435     (define-key compilation-mode-map (kbd "r") #'recompile))
2436
2437
2438   ;; (loop for (mode . program) in '(
2439   ;;                                 (lua-mode-hook . "lua")
2440   ;;                                 (perl-mode-hook . "perl")
2441   ;;                                 (python-mode-hook . "python")
2442   ;;                                 (shell-mode-hook . "sh"))
2443   ;;       do (add-hook mode `(lambda ()
2444   ;;                           (unless (or (file-exists-p "makefile")
2445   ;;                                       (file-exists-p "Makefile"))
2446   ;;                             (set (make-local-variable 'compile-command)
2447   ;;                                  (concat ,program
2448   ;;                                          " "
2449   ;;                                          (if buffer-file-name
2450   ;;                                              (shell-quote-argument buffer-file-name))))))))
2451
2452   ;; here note dynamic binding the value of vv, otherwise it will resport error when run the hook.
2453   ;; https://emacs.stackexchange.com/questions/10394/scope-in-lambda
2454   (dolist (vv '(
2455                 (cperl-mode-hook . "perl")
2456                 (lua-mode-hook . "lua")
2457                 (python-mode-hook . "python")
2458                 (shell-mode-hook . "sh")))
2459     (add-hook (car vv) `(lambda ()
2460                           (unless (or (file-exists-p "makefile")
2461                                       (file-exists-p "Makefile"))
2462                             (set (make-local-variable 'compile-command)
2463                                  (concat (cdr ',vv)
2464                                          " "
2465                                          (if buffer-file-name
2466                                              (shell-quote-argument buffer-file-name))))))))
2467
2468   (global-set-key (kbd "s-r") 'compile)
2469 #+END_SRC
2470
2471 * Auto-Insert
2472 ** Enable auto-insert mode
2473 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2474   (auto-insert-mode t)
2475   (setq auto-insert-query nil)
2476 #+END_SRC
2477
2478 ** C++ Auto Insert
2479 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2480   (eval-after-load 'autoinsert
2481     '(define-auto-insert '("\\.cpp\\|.cc\\'" . "C++ skeleton")
2482        '(
2483          "Short description:"
2484          "/*"
2485          "\n * " (file-name-nondirectory (buffer-file-name))
2486          "\n */" > \n \n
2487          "#include <iostream>" \n
2488          "//#include \""
2489          (file-name-sans-extension
2490           (file-name-nondirectory (buffer-file-name)))
2491          ".hpp\"" \n \n
2492          "using namespace std;" \n \n
2493          "int main (int argc, char *argv[])"
2494          "\n{" \n 
2495          > _ \n
2496          "return 0;"
2497          "\n}" > \n
2498          )))
2499
2500   (eval-after-load 'autoinsert
2501     '(define-auto-insert '("\\.c\\'" . "C skeleton")
2502        '(
2503          "Short description:"
2504          "/*\n"
2505          " * " (file-name-nondirectory (buffer-file-name)) "\n"
2506          " */" > \n \n
2507          "#include <stdio.h>" \n
2508          "//#include \""
2509          (file-name-sans-extension
2510           (file-name-nondirectory (buffer-file-name)))
2511          ".h\"" \n \n
2512          "int main (int argc, char *argv[])\n"
2513          "{" \n
2514          > _ \n
2515          "return 0;\n"
2516          "}" > \n
2517          )))
2518
2519   (eval-after-load 'autoinsert
2520     '(define-auto-insert '("\\.h\\|.hpp\\'" . "c/c++ header")
2521        '((s-upcase (s-snake-case (file-name-nondirectory buffer-file-name)))
2522          "#ifndef " str n "#define " str "\n\n" _ "\n\n#endif  // " str)))
2523 #+END_SRC
2524
2525 ** Python template
2526 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2527   (eval-after-load 'autoinsert
2528     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
2529        '(
2530          "Empty"
2531          "#import os,sys" \n
2532          \n \n
2533          )))
2534 #+END_SRC
2535
2536 ** Elisp 
2537 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
2538 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
2539 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2540   (eval-after-load 'autoinsert
2541     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
2542        '(
2543          "Short description: "
2544          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
2545          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
2546          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
2547          "\n
2548   ;; Copyright (C) " (format-time-string "%Y") "  "
2549          (getenv "ORGANIZATION") | (progn user-full-name) "
2550
2551   ;; Author: " (user-full-name)
2552          '(if (search-backward "&" (line-beginning-position) t)
2553               (replace-match (capitalize (user-login-name)) t t))
2554          '(end-of-line 1) " <" (progn user-mail-address) ">
2555   ;; Keywords: "
2556          '(require 'finder)
2557          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
2558          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
2559                            finder-known-keywords)
2560                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
2561                               finder-known-keywords
2562                               "\n"))
2563          ((let ((minibuffer-help-form v2))
2564             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
2565           str ", ") & -2 "
2566
2567   \;; This program is free software; you can redistribute it and/or modify
2568   \;; it under the terms of the GNU General Public License as published by
2569   \;; the Free Software Foundation, either version 3 of the License, or
2570   \;; (at your option) any later version.
2571
2572   \;; This program is distributed in the hope that it will be useful,
2573   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2574   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2575   \;; GNU General Public License for more details.
2576
2577   \;; You should have received a copy of the GNU General Public License
2578   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
2579
2580   \;;; Commentary:
2581
2582   \;; " _ "
2583
2584   \;;; Code:
2585
2586
2587   \(provide '"
2588          (file-name-base)
2589          ")
2590   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
2591 #+END_SRC
2592
2593 ** Org file template
2594 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2595   ;; (eval-after-load 'autoinsert
2596   ;;   '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
2597   ;;      '(
2598   ;;        "title: "
2599   ;;        "#+TITLE: " str (make-string 30 ?\s) > \n
2600   ;;        "#+AUTHOR: Peng Li\n"
2601   ;;        "#+EMAIL: seudut@gmail.com\n"
2602   ;;        "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
2603   ;;        > \n
2604   ;;        > _)))
2605 #+END_SRC
2606
2607 * Markdown mode
2608 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2609   (use-package markdown-mode
2610     :ensure t
2611     :commands (markdown-mode gfm-mode)
2612     :mode (("README\\.md\\'" . gfm-mode)
2613            ("\\.md\\'" . markdown-mode)
2614            ("\\.markdown\\'" . markdown-mode))
2615     :init (setq markdown-command "multimarkdown"))
2616
2617   (add-hook 'gfm-mode-hook (lambda ()
2618                              (set-face-attribute 'markdown-inline-code-face nil :inherit 'fixed-pitch)
2619                              (set-face-attribute 'markdown-pre-face nil :inherit 'fixed-pitch)))
2620   (with-eval-after-load "gfm-mode"
2621     (set-face-attribute 'markdown-inline-code-face nil :inherit 'fixed-pitch)
2622     (set-face-attribute 'markdown-pre-face nil :inherit 'fixed-pitch))
2623 #+END_SRC
2624
2625 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2626   (use-package markdown-preview-eww
2627     :ensure t)
2628 #+END_SRC
2629
2630 * Gnus
2631 ** Gmail setting 
2632 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
2633 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2634   (setq user-mail-address "seudut@gmail.com"
2635         user-full-name "Peng Li")
2636
2637   (setq gnus-select-method
2638         '(nnimap "gmail"
2639                  (nnimap-address "imap.gmail.com")
2640                  (nnimap-server-port "imaps")
2641                  (nnimap-stream ssl)))
2642
2643   (setq smtpmail-smtp-service 587
2644         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
2645
2646   ;; Use gmail sending mail
2647   (setq message-send-mail-function 'smtpmail-send-it
2648         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
2649         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
2650         smtpmail-default-smtp-server "smtp.gmail.com"
2651         smtpmail-smtp-server "smtp.gmail.com"
2652         smtpmail-smtp-service 587
2653         starttls-use-gnutls t)
2654 #+END_SRC
2655
2656 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
2657 and =<PASSWORD>= with the password
2658 #+BEGIN_EXAMPLE
2659   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
2660   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
2661 #+END_EXAMPLE
2662
2663 Then Run =M-x gnus=
2664
2665 ** Group buffer
2666 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2667   ;; (use-package gnus
2668   ;;   :init
2669   ;;   (setq gnus-permanently-visible-groups "\.*")
2670   ;;   :config
2671   ;;   (cond (window-system
2672   ;;          (setq custom-background-mode 'light)
2673   ;;          (defface my-group-face-1
2674   ;;            '((t (:foreground "Red" :bold t))) "First group face")
2675   ;;          (defface my-group-face-2
2676   ;;            '((t (:foreground "DarkSeaGreen4" :bold t)))
2677   ;;            "Second group face")
2678   ;;          (defface my-group-face-3
2679   ;;            '((t (:foreground "Green4" :bold t))) "Third group face")
2680   ;;          (defface my-group-face-4
2681   ;;            '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
2682   ;;          (defface my-group-face-5
2683   ;;            '((t (:foreground "Blue" :bold t))) "Fifth group face")))
2684   ;;   (setq gnus-group-highlight
2685   ;;         '(((> unread 200) . my-group-face-1)
2686   ;;           ((and (< level 3) (zerop unread)) . my-group-face-2)
2687   ;;           ((< level 3) . my-group-face-3)
2688   ;;           ((zerop unread) . my-group-face-4)
2689   ;;           (t . my-group-face-5))))
2690
2691
2692   ;; ;; key-
2693   ;; (add-hook 'gnus-group-mode-hook (lambda ()
2694   ;;                                   (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
2695   ;;                                   (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
2696   ;;                                   (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
2697   ;;                                   (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
2698 #+END_SRC
2699
2700 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2701   (setq gnus-fetch-old-headers 't)
2702
2703
2704
2705   (setq gnus-extract-address-components
2706         'mail-extract-address-components)
2707   ;; summary buffer 
2708   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
2709   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
2710                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
2711                                       (604800 . "%a, %b %-d")
2712                                       (15778476 . "%b %-d")
2713                                       (t . "%Y-%m-%d")))
2714
2715   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
2716   (setq gnus-unread-mark ?\.)
2717   (setq gnus-use-correct-string-widths t)
2718
2719   ;; thread
2720   (setq gnus-thread-hide-subtree t)
2721
2722   ;; (with-eval-after-load 'gnus-summary-mode
2723   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
2724
2725   ;; (add-hook 'gnus-summary-mode-hook (lambda ()
2726   ;;                                     (define-key gnus-summary-mode-map (kbd "C-o") nil)))
2727   ;(add-hook 'gnus-summary-mode-hook (apply-partially #'define-key gnus-summary-mode-map (kbd "C-o") nil))
2728
2729
2730 #+END_SRC
2731
2732 ** Windows layout
2733 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
2734 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2735   (gnus-add-configuration
2736    '(summary
2737      (horizontal 1.0
2738                  (vertical 35
2739                            (group 1.0))
2740                  (vertical 1.0
2741                            (summary 1.0 poine)))))
2742
2743   (gnus-add-configuration
2744    '(article
2745      (horizontal 1.0
2746                  (vertical 35
2747                            (group 1.0))
2748                  (vertical 1.0
2749                            (summary 0.50 point)
2750                            (article 1.0)))))
2751
2752   (with-eval-after-load 'gnus-group-mode
2753     (gnus-group-select-group "INBOX"))
2754   ;; (add-hook 'gnus-group-mode-map (lambda ()
2755   ;;                               (gnus-group-select-group "INBOX")))
2756 #+END_SRC
2757
2758 * Mu4e
2759 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]]
2760
2761 ** OfflineImap - download all mails from IMAP into local directory, and keep in sync
2762 #+BEGIN_SRC sh :results output replace
2763   # offline-imap
2764   brew install offline-imap
2765
2766   cp /usr/local/etc/offlineimap.conf ~/.offlineimapr
2767
2768   #For the =offlineimap= config on mac, using =sslcacertfile= instead of =cert_fingerpring=. On Mac
2769   sslcacertfile = /usr/local/etc/openssl/cert.pem 
2770 #+END_SRC
2771
2772 #+BEGIN_SRC conf 
2773   [general]
2774   ui=TTYUI
2775   accounts = Gmail
2776   autorefresh = 5
2777
2778   [Account Gmail]
2779   localrepository = Gmail-Local
2780   remoterepository = Gmail-Remote
2781
2782   [Repository Gmail-Local]
2783   type = Maildir
2784   localfolders = ~/.Mail/seudut@gmail.com
2785
2786   [Repository Gmail-Remote]
2787   type = Gmail
2788   remotehost = imap.gmail.com
2789   remoteuser = seudut@gmail.com
2790   remotepass = xxxxxxxx
2791   realdelete = no
2792   ssl = yes
2793   #cert_fingerprint = <insert gmail server fingerprint here>
2794   sslcacertfile = /usr/local/etc/openssl/cert.pem
2795   maxconnections = 1
2796   folderfilter = lambda folder: folder not in ['[Gmail]/Trash',
2797                                                '[Gmail]/Spam',
2798                                                '[Gmail]/All Mail',
2799                                                ]
2800 #+END_SRC
2801
2802 Then, run =offlineimap= to sync the mail
2803
2804 ** Mu - fast search, view mails and extract attachments.
2805 #+BEGIN_SRC sh
2806   EMACS=/usr/local/bin/emacs brew install mu --with-emacs
2807 #+END_SRC
2808
2809 Then, run =mu index --maildir=~/.Mail=
2810
2811 ** Mu4e - Emacs frontend of Mu
2812 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]]
2813 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2814   (if (require 'mu4e nil 'noerror)
2815       (progn
2816         (setq mu4e-maildir "~/.Mail")
2817         (setq mu4e-drafts-folder "/[Gmail].Drafts")
2818         (setq mu4e-sent-folder   "/[Gmail].Sent Mail")
2819         ;; don't save message to Sent Messages, Gmail/IMAP takes care of this
2820         (setq mu4e-sent-messages-behavior 'delete)
2821         ;; allow for updating mail using 'U' in the main view:
2822         (setq mu4e-get-mail-command "offlineimap")
2823
2824         ;; shortcuts
2825         (setq mu4e-maildir-shortcuts
2826               '( ("/INBOX"               . ?i)
2827                  ("/[Gmail].Sent Mail"   . ?s)))
2828
2829         ;; something about ourselves
2830         (setq
2831          user-mail-address "seudut@gmail.com"
2832          user-full-name  "Peng Li"
2833          mu4e-compose-signature
2834          (concat
2835           "Thanks,\n"
2836           "Peng\n"))
2837
2838         ;; show images
2839         (setq mu4e-show-images t)
2840
2841         ;; use imagemagick, if available
2842         (when (fboundp 'imagemagick-register-types)
2843           (imagemagick-register-types))
2844
2845         ;; convert html emails properly
2846         ;; Possible options:
2847         ;;   - html2text -utf8 -width 72
2848         ;;   - textutil -stdin -format html -convert txt -stdout
2849         ;;   - html2markdown | grep -v '&nbsp_place_holder;' (Requires html2text pypi)
2850         ;;   - w3m -dump -cols 80 -T text/html
2851         ;;   - view in browser (provided below)
2852         (setq mu4e-html2text-command "textutil -stdin -format html -convert txt -stdout")
2853
2854         ;; spell check
2855         (add-hook 'mu4e-compose-mode-hook
2856                   (defun my-do-compose-stuff ()
2857                     "My settings for message composition."
2858                     (set-fill-column 72)
2859                     (flyspell-mode)))
2860
2861         ;; add option to view html message in a browser
2862         ;; `aV` in view to activate
2863         (add-to-list 'mu4e-view-actions
2864                      '("ViewInBrowser" . mu4e-action-view-in-browser) t)
2865
2866         ;; fetch mail every 10 mins
2867         (setq mu4e-update-interval 600)
2868
2869         ;; mu4e view
2870         (setq-default mu4e-headers-fields '((:flags . 6)
2871                                             (:from-or-to . 22)
2872                                             (:mailing-list . 20)
2873                                             (:thread-subject . 70)
2874                                             (:human-date . 16))))
2875     (warn "seudut:mu4e not installed, it won't work."))
2876 #+END_SRC
2877
2878 ** Smtp - send mail
2879 - =gnutls=, depends on =gnutls=, first confirm this is installed, otherwise, =brew install gnutls=
2880 - =~/.authinfo=
2881 #+BEGIN_SRC fundamental 
2882   machine smtp.gmail.com login <gmail username> password <gmail password>
2883 #+END_SRC
2884 - OPTIONAL, encrypt the =~/.authinfo= file
2885 #+BEGIN_SRC sh :results output replace
2886   gpg --output ~/.authinfo.gpg --symmetric ~/.authinfo
2887 #+END_SRC
2888
2889 * Ediff
2890 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2891   (with-eval-after-load 'ediff
2892     (setq ediff-split-window-function 'split-window-horizontally)
2893     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
2894     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
2895     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
2896     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
2897 #+END_SRC
2898
2899 * Modes
2900 ** Yaml-mode
2901 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2902   (use-package yaml-mode
2903     :ensure t
2904     :init
2905     (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)))
2906 #+END_SRC
2907
2908 * Entertainment
2909 ** GnuGo
2910 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
2911 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2912   (use-package gnugo
2913     :ensure t
2914     :defer t
2915     :init
2916     (require 'gnugo-imgen)
2917     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
2918     (add-hook 'gnugo-start-game-hook '(lambda ()
2919                                         (gnugo-image-display-mode)
2920                                         (gnugo-grid-mode)))
2921     :config
2922     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
2923 #+END_SRC
2924
2925 ** Emms
2926 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
2927 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2928   (use-package emms
2929     :ensure t
2930     :init
2931     (setq emms-directory (concat sd-temp-directory "emms"))
2932     (setq emms-source-file-default-directory "~/Music/")
2933     :config
2934     (emms-standard)
2935     (emms-default-players)
2936     (define-emms-simple-player mplayer '(file url)
2937       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
2938                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
2939                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
2940                     ".m4a" ".flv" ".ogv" ".pls"))
2941       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
2942     (emms-history-load))
2943 #+END_SRC
2944
2945 * Dictionary
2946 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2947   (use-package bing-dict
2948     :ensure t
2949     :init
2950     (global-set-key (kbd "s-d") 'bing-dict-brief)
2951     :commands (bing-dict-brief))
2952 #+END_SRC
2953
2954 * Key Bindings
2955 Here are some global key bindings for basic editting
2956 ** Global key bingding
2957 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2958   (global-set-key (kbd "C-h") 'delete-backward-char)
2959   (global-set-key (kbd "s-m") 'man)
2960 #+END_SRC
2961
2962 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]]
2963
2964 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2965   (require 'utilities)
2966   (global-set-key (kbd "C-w") 'sd/kill-region-or-backward-kill-word)
2967 #+END_SRC
2968
2969
2970 ** Esc in minibuffer
2971 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
2972 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2973   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
2974   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
2975   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
2976   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
2977   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
2978   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
2979   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
2980   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
2981   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
2982
2983   ;; Also map s-h same as C-g
2984   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
2985 #+END_SRC
2986
2987 ** Project operations - =super=
2988 *** Projectile
2989 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2990   (use-package projectile
2991     :ensure t
2992     :init
2993     (setq projectile-enable-caching t)
2994     (setq projectile-switch-project-action (lambda ()
2995                                              (projectile-dired)
2996                                              (sd/project-switch-action)))
2997     (setq projectile-cache-file (concat sd-temp-directory "projectile.cache"))
2998     :config
2999     (add-to-list 'projectile-globally-ignored-files "GTAGS")
3000     (projectile-global-mode t))
3001
3002   ;; change default-directory of scratch buffer to projectile-project-root 
3003   (defun sd/project-switch-action ()
3004     "Change default-directory of scratch buffer to current projectile-project-root directory"
3005     (interactive)
3006     (dolist (buffer (buffer-list))
3007       (if (string-match (concat "scratch.*" (projectile-project-name))
3008                         (buffer-name buffer))
3009           (let ((root (projectile-project-root)))
3010             (with-current-buffer buffer
3011               (cd root))))))
3012 #+END_SRC
3013
3014 *** project config =super= keybindings
3015 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3016   ;; (global-set-key (kbd "s-h") 'keyboard-quit)
3017   ;; (global-set-key (kbd "s-j") 'ido-switch-buffer)
3018   ;; (global-set-key (kbd "s-k") 'ido-find-file)
3019   ;; (global-set-key (kbd "s-l") 'sd/delete-current-window)
3020   ;; s-l  -->  goto-line
3021   ;; (global-set-key (kbd "s-/") 'swiper)
3022   ;; s-;  -->
3023   ;; s-'  -->  'next-multiframe-window
3024   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
3025
3026   (global-set-key (kbd "s-f") 'projectile-find-file)
3027   ;; (global-set-key (kbd "s-`") 'mode-line-other-buffer)
3028
3029   ;; (global-set-key (kbd "s-n") 'persp-next)
3030   ;; (global-set-key (kbd "s-p") 'persp-prev)
3031   ;; (global-set-key (kbd "s-;") 'persp-switch-last)
3032
3033   (global-set-key (kbd "s-=") 'text-scale-increase)
3034   (global-set-key (kbd "s--") 'text-scale-decrease)
3035
3036   ;; (global-set-key (kbd "s-u") 'undo-tree-visualize)
3037 #+END_SRC
3038
3039 ** Windown & Buffer - =C-o=
3040 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
3041 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
3042 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3043   (winner-mode 1)
3044
3045   (require 'utilities)
3046   (defhydra sd/hydra-window (:color red :columns nil)
3047     "C-o"
3048     ;; windows switch
3049     ("h" windmove-left nil :exit t)
3050     ("j" windmove-down nil :exit t)
3051     ("k" windmove-up nil :exit t)
3052     ("l" windmove-right nil :exit t)
3053     ("C-o" other-window nil :exit t)
3054     ;; window resize
3055     ("H" hydra-move-splitter-left nil)
3056     ("J" hydra-move-splitter-down nil)
3057     ("K" hydra-move-splitter-up nil)
3058     ("L" hydra-move-splitter-right nil)
3059     ;; windows split
3060     ("v" (lambda ()
3061            (interactive)
3062            (split-window-right)
3063            (windmove-right))
3064      nil :exit t)
3065     ("x" (lambda ()
3066            (interactive)
3067            (split-window-below)
3068            (windmove-down))
3069      nil :exit t)
3070     ;; buffer / windows switch
3071     ("o" sd/toggle-max-windows nil :exit t)
3072     ("C-k" sd/delete-current-window nil :exit t)
3073     ("C-d" (lambda ()
3074              (interactive)
3075              (kill-buffer)
3076              (sd/delete-current-window))
3077      nil :exit t)
3078
3079     ;; ace-window
3080     ;; ("'" other-window "other" :exit t)
3081     ;; ("a" ace-window "ace")
3082     ("s" ace-swap-window nil)
3083     ("D" ace-delete-window nil :exit t)
3084     ;; ("i" ace-maximize-window "ace-one" :exit t)
3085     ;; Windows undo - redo
3086     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) nil)
3087     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) nil)
3088
3089     ;; ibuffer, dired, eshell, bookmarks
3090     ;; ("C-i" other-window nil :exit t)
3091     ("C-b" ido-switch-buffer nil :exit t)
3092     ("C-f" projectile-find-file nil :exit t)
3093     ("C-r" ivy-recentf nil :exit t)
3094     ;; ("C-p" persp-switch nil :exit t)
3095     ;; ("C-t" projectile-persp-switch-project nil :exit t)
3096
3097     ;; other special buffers
3098     ("d" sd/project-or-dired-jump nil :exit t)
3099     ("b" ibuffer nil :exit t)
3100     ("t" multi-term nil :exit t)
3101     ("e" sd/toggle-project-eshell nil :exit t)
3102     ("m" bookmark-jump-other-window nil :exit t)
3103     ("M" bookmark-set nil :exit t)
3104     ("g" magit-status nil :exit t)
3105     ;; ("p" paradox-list-packages nil :exit t)
3106
3107     ;; quit
3108     ("q" nil nil)
3109     ("<ESC>" nil nil)
3110     ("C-h" windmove-left nil :exit t)
3111     ("C-j" windmove-down nil :exit t)
3112     ("C-k" windmove-up nil :exit t)
3113     ("C-l" windmove-right nil :exit t)
3114     ("C-;" nil nil :exit t)
3115     ("n" nil nil :exit t)
3116     ("[" nil nil :exit t)
3117     ("]" nil nil :exit t)
3118     ("f" nil nil))
3119
3120   (global-unset-key (kbd "C-o"))
3121   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
3122
3123   (defun sd/project-or-dired-jump ()
3124     "If under project, jump to the root directory, otherwise
3125   jump to dired of current file"
3126     (interactive)
3127     (if (projectile-project-p)
3128         (projectile-dired)
3129       (dired-jump)))
3130 #+END_SRC
3131
3132 Kill the help window and buffer when quit.
3133 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3134   (with-eval-after-load "help-mode"
3135     (define-key help-mode-map (kbd "q") (lambda ()
3136                                           (interactive)
3137                                           (quit-window t))))
3138
3139   (with-eval-after-load 'man
3140     (set-face-attribute 'Man-overstrike nil :inherit 'bold :foreground "orange red")
3141     (set-face-attribute 'Man-underline nil :inherit 'underline :foreground "forest green")
3142     (define-key Man-mode-map (kbd "q") (lambda ()
3143                                          (interactive)
3144                                          (Man-kill))))
3145
3146
3147   ;; (advice-add 'man :after (lambda (man-args) (other-window 1)))
3148   (advice-add 'man :after (apply-partially 'other-window 1))
3149
3150
3151   (require 'shell-command-output-mode)
3152
3153   (defun my/shell-command-after (command &optional output-buffer error-buffer)
3154     (let* ((buffer (get-buffer "*Shell Command Output*"))
3155            (window (get-buffer-window buffer)))
3156       (if buffer (with-current-buffer buffer
3157                    (shell-command-output-mode)))
3158       (if window
3159           (select-window window))))
3160
3161   (advice-add 'shell-command :after 'my/shell-command-after)
3162 #+END_SRC
3163
3164 ** Motion
3165 - =C-M-=
3166 [[https://www.masteringemacs.org/article/effective-editing-movement][effective-editing-movement]]
3167 *** Command Arguments, numeric argumens
3168 =C-u 4= same as =C-4=, =M-4=
3169 *** Basic movement
3170 moving by line / word / 
3171 =C-f=, =C-b=, =C-p=, =C-n=, =M-f=, =M-b=
3172 =C-a=, =C-e=
3173 =M-m= (move first non-whitespace on this line) 
3174 =M-}=, =M-{=, Move forward end of paragraph
3175 =M-a=, =M-e=,  beginning / end of sentence
3176 =C-M-a=, =C-M-e=, move begining of defun
3177 =C-x ]=, =C-x [=, forward/backward one page
3178 =C-v=, =M-v=, =C-M-v=, =C-M-S-v= scroll down/up
3179 =M-<=, =M->=, beginning/end of buffer
3180 =M-r=, Repositiong point
3181
3182 *** Moving by S-expression / List
3183 *** Marks
3184 =C-<SPC>= set marks toggle the region
3185 =C-u C-<SPC>= Jump to the mark, repeated calls go further back the mark ring
3186 =C-x C-x= Exchanges the point and mark.
3187
3188 Stolen [[https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode][fixing-mark-commands-transient-mark-mode]]
3189 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3190   (defun push-mark-no-activate ()
3191     "Pushes `point' to `mark-ring' and does not activate the region
3192      Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
3193     (interactive)
3194     (push-mark (point) t nil)
3195     (message "Pushed mark to ring"))
3196
3197   ;; (global-set-key (kbd "C-`") 'push-mark-no-activate)
3198
3199   (defun jump-to-mark ()
3200     "Jumps to the local mark, respecting the `mark-ring' order.
3201     This is the same as using \\[set-mark-command] with the prefix argument."
3202     (interactive)
3203     (set-mark-command 1))
3204
3205   ;; (global-set-key (kbd "M-`") 'jump-to-mark)
3206
3207   (defun exchange-point-and-mark-no-activate ()
3208     "Identical to \\[exchange-point-and-mark] but will not activate the region."
3209     (interactive)
3210     (exchange-point-and-mark)
3211     (deactivate-mark nil))
3212
3213   ;; (define-key global-map [remap exchange-point-and-mark] 'exchange-point-and-mark-no-activate)
3214 #+END_SRC
3215
3216 Show the mark ring using =helm-mark-ring=, also mapping =M-`= to quit minibuffer. so that =M-`= can 
3217 toggle the mark ring. the best way is add a new action and mapping to =helm-source-mark-ring=,  but 
3218 since there is no map such as =helm-mark-ring=map=, so I cannot binding a key to the quit action.
3219 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3220   (setq mark-ring-max 50)
3221
3222   (use-package helm
3223     :ensure t
3224     :init
3225     (global-set-key (kbd "M-`") #'helm-mark-ring))
3226
3227   (define-key minibuffer-local-map (kbd "M-`") 'keyboard-escape-quit)
3228 #+END_SRC
3229
3230 =M-h= marks the next paragraph
3231 =C-x h= marks the whole buffer
3232 =C-M-h= marks the next defun
3233 =C-x C-p= marks the next page
3234 *** Registers
3235 Registers can save text, position, rectangles, file and configuration and other things.
3236 Here for movement, we can use register to save/jump position
3237 =C-x r SPC= store point in register
3238 =C-x r j= jump to register
3239 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3240   (use-package list-register
3241     :ensure t)
3242 #+END_SRC
3243
3244 *** Bookmarks
3245 As I would like use bookmakr for different buffer/files. to help to swith
3246 different buffer/file quickly. this setting is in Windows/buffer node
3247 =C-x r m= set a bookmarks
3248 =C-x r l= list bookmarks
3249 =C-x r b= jump to bookmarks
3250
3251 *** Search
3252 Search, replace and hightlight will in later paragraph
3253 *** =Avy= for easy motion
3254 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3255   (use-package avy
3256     :ensure t
3257     :config
3258     (avy-setup-default))
3259
3260   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
3261   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
3262   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
3263   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
3264
3265   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
3266   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
3267
3268   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3269   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
3270   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
3271
3272   ;; ;; will delete above 
3273   ;; (global-set-key (kbd "M-g j") 'avy-goto-line-below)
3274   ;; (global-set-key (kbd "M-g k") 'avy-goto-line-above)
3275   ;; (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
3276   ;; (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
3277   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3278   ;; (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
3279   ;; (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
3280 #+END_SRC
3281
3282 *** =Imenu= goto tag
3283 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3284   (global-set-key (kbd "M-i") #'counsel-imenu)
3285   ;; (global-set-key (kbd "M-i") #'imenu)
3286
3287   ;; define M-[ as C-M-a
3288   ;; http://ergoemacs.org/emacs/emacs_key-translation-map.html
3289   (define-key key-translation-map (kbd "M-[") (kbd "C-M-a"))
3290   (define-key key-translation-map (kbd "M-]") (kbd "C-M-e"))
3291 #+END_SRC
3292
3293 *** Go-to line
3294 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3295   (global-set-key (kbd "M-l") 'goto-line)
3296 #+END_SRC
3297
3298 ** Edit
3299 *** basic editting
3300 - cut, yank, =C-w=, =C-y=
3301 - save, revert
3302 - undo, redo - undo-tree
3303 - select, expand-region
3304 - spell check, flyspell
3305
3306 *** Kill ring
3307 =helm-show-kill-ring=
3308 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3309   (setq kill-ring-max 100)                ; default is 60p
3310
3311   (use-package helm
3312     :ensure t
3313     :init
3314     (global-set-key (kbd "M-y") #'helm-show-kill-ring))
3315 #+END_SRC
3316
3317 *** undo-tree
3318 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3319   (use-package undo-tree
3320     :ensure t
3321     :config
3322     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
3323     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
3324     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
3325     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
3326     (global-undo-tree-mode 1))
3327
3328   (global-set-key (kbd "s-u") 'undo-tree-visualize)
3329 #+END_SRC
3330
3331 *** flyspell
3332 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
3333 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3334   (setenv "DICPATH" "/usr/local/share/hunspell")
3335
3336   (when (executable-find "hunspell")
3337     (setq-default ispell-program-name "hunspell")
3338     (setq ispell-really-hunspell t))
3339
3340   ;; (defun text-mode-hook-setup ()
3341   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
3342   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
3343   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
3344   ;; (add-hook 'text-mode-hook 'flyspell-mode)
3345
3346   ;; enable flyspell check on comments and strings in progmamming modes
3347   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
3348
3349   ;; I don't use the default mappings
3350   (with-eval-after-load 'flyspell
3351     (define-key flyspell-mode-map (kbd "C-;") nil)
3352     (define-key flyspell-mode-map (kbd "C-,") nil)
3353     (define-key flyspell-mode-map (kbd "C-.") nil))
3354 #+END_SRC
3355
3356 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]]
3357 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3358   ;; NO spell check for embedded snippets
3359   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
3360     (let ((rlt ad-return-value)
3361           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
3362           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
3363           old-flag
3364           b e)
3365       (when ad-return-value
3366         (save-excursion
3367           (setq old-flag case-fold-search)
3368           (setq case-fold-search t)
3369           (setq b (re-search-backward begin-regexp nil t))
3370           (if b (setq e (re-search-forward end-regexp nil t)))
3371           (setq case-fold-search old-flag))
3372         (if (and b e (< (point) e)) (setq rlt nil)))
3373       (setq ad-return-value rlt)))
3374 #+END_SRC
3375
3376 ** Search & Replace / hightlight =M-s=
3377 *** isearch
3378 =C-s=, =C-r=, 
3379 =C-w= add word at point to search string, 
3380 =M-%= query replace
3381 =C-M-y= add character at point to search string
3382 =M-s C-e= add reset of line at point
3383 =C-y= yank from clipboard to search string
3384 =M-n=, =M-p=, history
3385 =C-M-i= complete search string
3386 set the isearch history size, the default is only =16=
3387 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3388   (setq history-length 5000)
3389   (setq regexp-search-ring-max 1000)
3390   (setq search-ring-max 1000)
3391
3392   ;; when search a word or a symbol , also add the word into regexp-search-ring
3393   (defadvice isearch-update-ring (after sd/isearch-update-ring (string &optional regexp) activate)
3394     "Add search-ring to regexp-search-ring"
3395     (unless regexp
3396       (add-to-history 'regexp-search-ring string regexp-search-ring-max)))
3397 #+END_SRC
3398
3399 *** =M-s= prefix
3400 use the prefix =M-s= for searching in buffers
3401 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3402   (defun sd/make-keymap (key bindings)
3403     (setq keymap (make-sparse-keymap))
3404     (dolist (binding bindings)
3405       (define-key keymap (car binding) (cdr binding)))
3406     (global-set-key key keymap))
3407
3408   ;; (sd/make-keymap "\M-s"
3409   ;;                 '(("w" . save-buffer)
3410   ;;                   ;; ("\M-w" . save-buffer)
3411   ;;                   ("e" . revert-buffer)
3412   ;;                   ("s" . isearch-forward-regexp)
3413   ;;                   ("\M-s" . isearch-forward-regexp)
3414   ;;                   ("r" . isearch-backward-regexp)
3415   ;;                   ("." . isearch-forward-symbol-at-point)
3416   ;;                   ("o" . occur)
3417   ;;                   ;; ("h" . highlight-symbol-at-point)
3418   ;;                   ("h" . highlight-symbol)
3419   ;;                   ("m" . highlight-regexp)
3420   ;;                   ("l" . highlight-lines-matching-regexp)
3421   ;;                   ("M" . unhighlight-regexp)
3422   ;;                   ("f" . keyboard-quit)
3423   ;;                   ("q" . keyboard-quit)))
3424 #+END_SRC
3425
3426 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3427   (use-package highlight-symbol
3428     :ensure t)
3429
3430   (defhydra sd/search-replace (:color red :columns nil)
3431     "Search"
3432     ("w" save-buffer "save" :exit t)
3433     ("e" revert-buffer "revert" :exit t)
3434     ("u" undo-tree-visualize "undo" :exit t)
3435     ("s" isearch-forward-regexp "s-search" :exit t)
3436     ("M-s" isearch-forward-regexp "s-search" :exit t)
3437     ("r" isearch-backward-regexp "r-search" :exit t)
3438     ("." isearch-forward-symbol-at-point "search point" :exit t)
3439     ("/" swiper "swiper" :exit t)
3440     ("o" occur "occur" :exit t)
3441     ("h" highlight-symbol "higlight" :exit t)
3442     ("l" highlight-lines-matching-regexp "higlight line" :exit t)
3443     ("m" highlight-regexp "higlight" :exit t)
3444     ("M" unhighlight-regexp "unhiglight" :exit t)
3445     ("q" nil "quit")
3446     ("f" nil))
3447
3448   (global-unset-key (kbd "M-s"))
3449   (global-set-key (kbd "M-s") 'sd/search-replace/body)
3450
3451
3452   ;; search and replace and highlight
3453   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
3454   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
3455   (global-set-key (kbd "s-[") 'highlight-symbol-next)
3456   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
3457   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
3458 #+END_SRC
3459
3460 *** Occur
3461 Occur search key bindings
3462 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3463   (defun sd/occur-keys ()
3464     "My key bindings in occur-mode"
3465     (interactive)
3466     (switch-to-buffer-other-window "*Occur*")
3467     (define-key occur-mode-map (kbd "C-o") nil)
3468     (define-key occur-mode-map (kbd "C-n") (lambda ()
3469                                              (interactive)
3470                                              (occur-next)
3471                                              (occur-mode-goto-occurrence-other-window)
3472                                              (recenter)
3473                                              (other-window 1)))
3474     (define-key occur-mode-map (kbd "C-p") (lambda ()
3475                                              (interactive)
3476                                              (occur-prev)
3477                                              (occur-mode-goto-occurrence-other-window)
3478                                              (recenter)
3479                                              (other-window 1))))
3480
3481   (add-hook 'occur-hook #'sd/occur-keys)
3482
3483   (use-package color-moccur
3484     :ensure t
3485     :commands (isearch-moccur isearch-all)
3486     :init
3487     (setq isearch-lazy-highlight t)
3488     :config
3489     (use-package moccur-edit))
3490 #+END_SRC
3491
3492 *** Swiper
3493 stolen from [[https://github.com/mariolong/emacs.d/blob/f6a061594ef1b5d1f4750e9dad9dc97d6e122840/emacs-init.org][here]]
3494 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3495   (use-package swiper
3496     :ensure t
3497     :init
3498     (setq ivy-use-virtual-buffers t)
3499     (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
3500     :config
3501     (ivy-mode)
3502     (global-set-key (kbd "s-/") 'swiper)
3503     (define-key swiper-map (kbd "M-r") 'swiper-query-replace)
3504     (define-key swiper-map (kbd "C-.") (lambda ()
3505                                          (interactive)
3506                                          (insert (format "%s" (with-ivy-window (thing-at-point 'word))))))
3507     (define-key swiper-map (kbd "M-.") (lambda ()
3508                                          (interactive)
3509                                          (insert (format "%s" (with-ivy-window (thing-at-point 'symbol)))))))
3510 #+END_SRC
3511
3512 ** Expand region map
3513 *** Install =expand-region=
3514 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3515   (use-package expand-region
3516     :ensure t
3517     :config
3518     ;; (global-set-key (kbd "C-=") 'er/expand-region)
3519     )
3520 #+END_SRC
3521
3522 *** Add a =hydra= map for =expand-region= operations
3523 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3524   (defun sd/mark-line ()
3525     "Mark current line without whitespace beginning"
3526     (interactive)
3527     (back-to-indentation)
3528     (set-mark (line-end-position)))
3529
3530   (defhydra sd/expand-selected (:color red :columns nil
3531                                        :post (deactivate-mark)
3532                                        )
3533     "Selected"
3534     ;; select
3535     ;; ("e"  er/expand-region "+")
3536     ("SPC" er/expand-region "+")
3537     ;; ("c"  er/contract-region "-")
3538     ("S-SPC" er/contract-region "-")
3539     ("r" (lambda ()
3540            (interactive)
3541            (er/contract-region 0))
3542      "reset")
3543
3544     ("i'" er/mark-inside-quotes "in")
3545     ("i\"" er/mark-inside-quotes nil)
3546     ("o'" er/mark-outside-quotes "out")
3547     ("o\"" er/mark-outside-quotes nil)
3548
3549     ("i{" er/mark-inside-pairs nil)
3550     ("i(" er/mark-inside-pairs nil)
3551     ("o{" er/mark-inside-pairs nil)
3552     ("o(" er/mark-inside-pairs nil)
3553
3554     ("p" er/mark-paragraph "paragraph")
3555
3556     ("l" sd/mark-line "line")
3557     ("u" er/mark-url "url")
3558     ("f" er/mark-defun "fun")
3559     ("n" er/mark-next-accessor "next")
3560
3561     ("x" exchange-point-and-mark "exchange")
3562
3563     ;; Search
3564     ;; higlight
3565
3566     ;; exit
3567     ("d" kill-region "delete" :exit t)
3568
3569     ("y" kill-ring-save "yank" :exit t)
3570     ("M-SPC" nil "quit" :exit t)
3571     ;; ("C-SPC" "quit" :exit t)
3572     ("q" deactivate-mark "quit" :exit t))
3573
3574   (global-set-key (kbd "M-SPC") (lambda ()
3575                                   (interactive)
3576                                   (set-mark-command nil)
3577                                   ;; (er/expand-region 1)
3578                                   (er/mark-word)
3579                                   (sd/expand-selected/body)))
3580 #+END_SRC
3581
3582 *** TODO make expand-region hydra work with lispy selected
3583
3584 * Developing
3585 ** perspeen
3586 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3587   (use-package perspeen
3588     :ensure t
3589     :init
3590     (setq perspeen-use-tab nil)
3591     :config
3592     (perspeen-mode))
3593
3594   ;; super-i to switch to ith workspace
3595
3596   (defmacro sd/define-keys (map key func &rest args)
3597     "A macro to define multi keys "
3598     `(define-key ,map ,key (lambda () (interactive) (,func ,@args))))
3599
3600
3601   (with-eval-after-load "perspeen"
3602     (dotimes (ii 9)
3603       (sd/define-keys perspeen-mode-map (kbd (concat "s-" (number-to-string (+ ii 1))))
3604                       perspeen-goto-ws (+ ii 1)))
3605     (define-key perspeen-mode-map (kbd "s-c") 'perspeen-create-ws)
3606     (define-key perspeen-mode-map (kbd "s-n") 'perspeen-next-ws)
3607     (define-key perspeen-mode-map (kbd "s-p") 'perspeen-previous-ws)
3608     (define-key perspeen-mode-map (kbd "s-'") 'perspeen-last-ws)
3609     (define-key perspeen-mode-map (kbd "s-t") 'perspeen-tab-create-tab)
3610     (define-key perspeen-mode-map (kbd "s-t") 'perspeen-tab-create-tab))
3611 #+END_SRC
3612 * Evil Mode
3613 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3614   (org-babel-load-file "~/.emacs.d/emacs-evil.org")
3615 #+END_SRC
3616
3617
3618 * Note
3619 ** Check if emacs is in terminal of graphic mode
3620 Use =display-graphic-p= instead of =window-system=
3621 [[info:elisp#Window%20Systems][Window Systems]]
3622 ** =Interactive= 
3623 ** List operation
3624 *** add a element to list
3625 - ~add-to-list~ functions, append
3626 - ~push~ macro
3627 - ~(setcdr (last aa) (list element))~
3628 blog with modify list
3629
3630 draw one line top of the windows
3631 * test
3632 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3633   ;; test local mode line
3634   ;; (add-to-list 'load-path "~/.emacs.d/elisp")
3635   ;; (require 'my-mode-line)
3636 #+END_SRC