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