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