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