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