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