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