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