emacs - tidy up 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     "Misc"
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 * ibuffer
1485 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1486   (global-set-key (kbd "s-b") 'ibuffer)
1487
1488   (with-eval-after-load 'ibuffer
1489     (define-key ibuffer-mode-map (kbd "C-o") nil)
1490     (define-key ibuffer-mode-map (kbd "j") 'ibuffer-forward-line)
1491     (define-key ibuffer-mode-map (kbd "k") 'ibuffer-backward-line)
1492     (define-key ibuffer-mode-map (kbd "r") 'ibuffer-update)
1493     (define-key ibuffer-mode-map (kbd "g") 'ibuffer-jump-to-buffer))
1494 #+END_SRC
1495
1496 * Completion
1497 company mode and company-statistics
1498 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1499   (use-package company
1500     :ensure t
1501     :diminish company-mode
1502     :init (setq company-idle-delay 0.1)
1503     :config
1504     (global-company-mode))
1505
1506   (use-package company-statistics
1507     :ensure t
1508     :config
1509     (company-statistics-mode))
1510 #+END_SRC
1511
1512 * Programming Language
1513 ** Emacs Lisp
1514 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1515   (use-package color-identifiers-mode
1516     :ensure t
1517     :init
1518     (add-hook 'emacs-lisp-mode-hook 'color-identifiers-mode)
1519
1520     :diminish color-identifiers-mode)
1521
1522   (global-prettify-symbols-mode t)
1523 #+END_SRC
1524
1525 In Lisp Mode, =M-o= is defined, but I use this for global hydra window. So here disable this key
1526 bindings in =lispy-mode-map= after loaded. see [[http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings][here]]
1527 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1528   (use-package lispy
1529     :ensure t
1530     :init
1531     (eval-after-load "lispy"
1532       `(progn
1533          (define-key lispy-mode-map (kbd "M-o") nil)))
1534     :config
1535     (add-hook 'emacs-lisp-mode-hook (lambda () (lispy-mode 1))))
1536 #+END_SRC
1537
1538 ** Perl
1539 *** CPerl mode
1540 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
1541 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1542   (defalias 'perl-mode 'cperl-mode)
1543
1544   ;; (setq cperl-hairy t)
1545   ;; Turns on most of the CPerlMode options
1546   (setq cperl-auto-newline t)
1547   (setq cperl-highlight-variables-indiscriminately t)
1548   ;(setq cperl-indent-level 4)
1549   ;(setq cperl-continued-statement-offset 4)
1550   (setq cperl-close-paren-offset -4)
1551   (setq cperl-indent-parents-as-block t)
1552   (setq cperl-tab-always-indent t)
1553   ;(setq cperl-brace-offset  0)
1554
1555   (add-hook 'cperl-mode-hook
1556             '(lambda ()
1557                (cperl-set-style "C++")))
1558
1559   (defalias 'perldoc 'cperl-perldoc)
1560 #+END_SRC
1561
1562 *** Perl template
1563 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
1564 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1565   (eval-after-load 'autoinsert
1566     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
1567        '(
1568          "Empty"
1569          "#!/usr/bin/perl -w" \n
1570          \n
1571          "use strict;" >  \n \n
1572          > _
1573          )))
1574 #+END_SRC
1575
1576 *** Perl Keywords
1577 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1578   (font-lock-add-keywords 'cperl-mode
1579                           '(("\\(say\\)" . cperl-nonoverridable-face)
1580                             ("\\([0-9.]\\)*" . font-lock-constant-face)
1581                             ("\".*\\(\\\n\\).*\"" . font-lock-constant-face)
1582                             ("\n" . font-lock-constant-face)
1583                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
1584
1585     ;; (font-lock-add-keywords 'Man-mode
1586     ;;                         '(("\\(NAME\\)" . font-lock-function-name-face)))
1587
1588 #+END_SRC
1589
1590 *** Run Perl
1591 Change the compile-command to set the default command run when call =compile=
1592 Mapping =s-r= (on Mac, it's =Command + R= to run the script. Here =current-prefix-arg= is set
1593 to call =compilation=  interactively.
1594 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1595   (defun my-perl-hook ()
1596     (progn
1597       (setq-local compilation-read-command nil)
1598       (set (make-local-variable 'compile-command)
1599            (concat "/usr/bin/perl "
1600                    (if buffer-file-name
1601                        (shell-quote-argument buffer-file-name))))
1602       (local-set-key (kbd "s-r")
1603                      (lambda ()
1604                        (interactive)
1605                                           ;                       (setq current-prefix-arg '(4)) ; C-u
1606                        (call-interactively 'compile)))))
1607
1608   (add-hook 'cperl-mode-hook 'my-perl-hook)
1609 #+END_SRC
1610
1611 ** C & C++
1612 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1613   (setq c-default-style "stroustrup"
1614         c-basic-offset 4)
1615 #+END_SRC
1616
1617 * Compile
1618 Set the environments vairables in compilation mode
1619 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1620   (use-package compile
1621     :commands compile
1622     :config
1623     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
1624     (setq compilation-auto-jump-to-first-error t)
1625     (setq compilation-auto-jump-to-next t)
1626     (setq compilation-scroll-output 'first-error))
1627
1628   ;; super-r to compile
1629   (with-eval-after-load "compile"
1630     (define-key compilation-mode-map (kbd "C-o") nil)
1631     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
1632     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
1633     (define-key compilation-mode-map (kbd "r") #'recompile))
1634 #+END_SRC
1635
1636 * Auto-Insert
1637 ** Enable auto-insert mode
1638 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1639   (auto-insert-mode t)
1640   (setq auto-insert-query nil)
1641 #+END_SRC
1642
1643 ** C++ Auto Insert
1644 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1645   (eval-after-load 'autoinsert
1646     '(define-auto-insert '("\\.cpp\\'" . "C++ skeleton")
1647        '(
1648          "Short description:"
1649          "/*"
1650          "\n * " (file-name-nondirectory (buffer-file-name))
1651          "\n */" > \n \n
1652          "#include <iostream>" \n
1653          "#include \""
1654          (file-name-sans-extension
1655           (file-name-nondirectory (buffer-file-name)))
1656          ".hpp\"" \n \n
1657          "using namespace std;" \n \n
1658          "int main ()"
1659          "\n{" \n 
1660          > _ \n
1661          "return 1;"
1662          "\n}" > \n
1663          )))
1664
1665   (eval-after-load 'autoinsert
1666     '(define-auto-insert '("\\.c\\'" . "C skeleton")
1667        '(
1668          "Short description:"
1669          "/*\n"
1670          " * " (file-name-nondirectory (buffer-file-name)) "\n"
1671          " */" > \n \n
1672          "#include <stdio.h>" \n
1673          "#include \""
1674          (file-name-sans-extension
1675           (file-name-nondirectory (buffer-file-name)))
1676          ".h\"" \n \n
1677          "int main ()\n"
1678          "{" \n
1679          > _ \n
1680          "return 1;\n"
1681          "}" > \n
1682          )))
1683 #+END_SRC
1684
1685 ** Python template
1686 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1687   (eval-after-load 'autoinsert
1688     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
1689        '(
1690          "Empty"
1691          "#import os,sys" \n
1692          \n \n
1693          )))
1694 #+END_SRC
1695
1696 ** Elisp 
1697 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
1698 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
1699 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1700   (eval-after-load 'autoinsert
1701     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
1702        '(
1703          "Short description: "
1704          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
1705          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
1706          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
1707          "\n
1708   ;; Copyright (C) " (format-time-string "%Y") "  "
1709          (getenv "ORGANIZATION") | (progn user-full-name) "
1710
1711   ;; Author: " (user-full-name)
1712          '(if (search-backward "&" (line-beginning-position) t)
1713               (replace-match (capitalize (user-login-name)) t t))
1714          '(end-of-line 1) " <" (progn user-mail-address) ">
1715   ;; Keywords: "
1716          '(require 'finder)
1717          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
1718          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
1719                            finder-known-keywords)
1720                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
1721                               finder-known-keywords
1722                               "\n"))
1723          ((let ((minibuffer-help-form v2))
1724             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
1725           str ", ") & -2 "
1726
1727   \;; This program is free software; you can redistribute it and/or modify
1728   \;; it under the terms of the GNU General Public License as published by
1729   \;; the Free Software Foundation, either version 3 of the License, or
1730   \;; (at your option) any later version.
1731
1732   \;; This program is distributed in the hope that it will be useful,
1733   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
1734   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1735   \;; GNU General Public License for more details.
1736
1737   \;; You should have received a copy of the GNU General Public License
1738   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
1739
1740   \;;; Commentary:
1741
1742   \;; " _ "
1743
1744   \;;; Code:
1745
1746
1747   \(provide '"
1748          (file-name-base)
1749          ")
1750   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
1751 #+END_SRC
1752
1753 ** Org file template
1754 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1755   (eval-after-load 'autoinsert
1756     '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
1757        '(
1758          "title: "
1759          "#+TITLE: " str (make-string 30 ?\s) > \n
1760          "#+AUTHOR: Peng Li\n"
1761          "#+EMAIL: seudut@gmail.com\n"
1762          "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
1763          > \n
1764          > _)))
1765 #+END_SRC
1766
1767 * Markdown mode
1768 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1769   (use-package markdown-mode
1770     :ensure t
1771     :commands (markdown-mode gfm-mode)
1772     :mode (("README\\.md\\'" . gfm-mode)
1773            ("\\.md\\'" . markdown-mode)
1774            ("\\.markdown\\'" . markdown-mode))
1775     :init (setq markdown-command "multimarkdown"))
1776 #+END_SRC
1777
1778 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1779   (use-package markdown-preview-eww
1780     :ensure t)
1781 #+END_SRC
1782
1783 * Gnus
1784 ** Gmail setting 
1785 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
1786 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1787   (setq user-mail-address "seudut@gmail.com"
1788         user-full-name "Peng Li")
1789
1790   (setq gnus-select-method
1791         '(nnimap "gmail"
1792                  (nnimap-address "imap.gmail.com")
1793                  (nnimap-server-port "imaps")
1794                  (nnimap-stream ssl)))
1795
1796   (setq smtpmail-smtp-service 587
1797         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
1798
1799   ;; Use gmail sending mail
1800   (setq message-send-mail-function 'smtpmail-send-it
1801         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
1802         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
1803         smtpmail-default-smtp-server "smtp.gmail.com"
1804         smtpmail-smtp-server "smtp.gmail.com"
1805         smtpmail-smtp-service 587
1806         starttls-use-gnutls t)
1807 #+END_SRC
1808
1809 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
1810 and =<PASSWORD>= with the password
1811 #+BEGIN_EXAMPLE
1812   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
1813   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
1814 #+END_EXAMPLE
1815
1816 Then Run =M-x gnus=
1817
1818 ** Group buffer
1819 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1820   (use-package gnus
1821     :init
1822     (setq gnus-permanently-visible-groups "\.*")
1823     :config
1824     (cond (window-system
1825            (setq custom-background-mode 'light)
1826            (defface my-group-face-1
1827              '((t (:foreground "Red" :bold t))) "First group face")
1828            (defface my-group-face-2
1829              '((t (:foreground "DarkSeaGreen4" :bold t)))
1830              "Second group face")
1831            (defface my-group-face-3
1832              '((t (:foreground "Green4" :bold t))) "Third group face")
1833            (defface my-group-face-4
1834              '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
1835            (defface my-group-face-5
1836              '((t (:foreground "Blue" :bold t))) "Fifth group face")))
1837     (setq gnus-group-highlight
1838           '(((> unread 200) . my-group-face-1)
1839             ((and (< level 3) (zerop unread)) . my-group-face-2)
1840             ((< level 3) . my-group-face-3)
1841             ((zerop unread) . my-group-face-4)
1842             (t . my-group-face-5))))
1843
1844
1845   ;; key-
1846   (add-hook 'gnus-group-mode-hook (lambda ()
1847                                     (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
1848                                     (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
1849                                     (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
1850                                     (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
1851 #+END_SRC
1852
1853 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1854   (setq gnus-fetch-old-headers 't)
1855
1856
1857
1858   (setq gnus-extract-address-components
1859         'mail-extract-address-components)
1860   ;; summary buffer 
1861   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
1862   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
1863                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
1864                                       (604800 . "%a, %b %-d")
1865                                       (15778476 . "%b %-d")
1866                                       (t . "%Y-%m-%d")))
1867
1868   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
1869   (setq gnus-unread-mark ?\.)
1870   (setq gnus-use-correct-string-widths t)
1871
1872   ;; thread
1873   (setq gnus-thread-hide-subtree t)
1874
1875   ;; (with-eval-after-load 'gnus-summary-mode
1876   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
1877
1878   (add-hook 'gnus-summary-mode-hook (lambda ()
1879                                       (define-key gnus-summary-mode-map (kbd "C-o") nil)))
1880
1881
1882 #+END_SRC
1883
1884 ** Windows layout
1885 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
1886 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1887   (gnus-add-configuration
1888    '(summary
1889      (horizontal 1.0
1890                  (vertical 35
1891                            (group 1.0))
1892                  (vertical 1.0
1893                            (summary 1.0 poine)))))
1894
1895   (gnus-add-configuration
1896    '(article
1897      (horizontal 1.0
1898                  (vertical 35
1899                            (group 1.0))
1900                  (vertical 1.0
1901                            (summary 0.50 point)
1902                            (article 1.0)))))
1903
1904   (with-eval-after-load 'gnus-group-mode
1905     (gnus-group-select-group "INBOX"))
1906   ;; (add-hook 'gnus-group-mode-map (lambda ()
1907   ;;                               (gnus-group-select-group "INBOX")))
1908 #+END_SRC
1909
1910 * Gnu Plot
1911 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=
1912 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1913   (use-package gnuplot
1914     :ensure
1915     :init
1916     (setq gnuplot-help-xpm nil)
1917     (setq gnuplot-line-xpm nil)
1918     (setq gnuplot-region-xpm nil)
1919     (setq gnuplot-buffer-xpm nil)
1920     (setq gnuplot-doc-xpm nil))
1921 #+END_SRC
1922
1923 Use =gnuplot= on =Org-mode= file, see [[http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-gnuplot.html][ob-doc-gnuplot]]
1924 #+BEGIN_SRC gnuplot :exports code :file ./temp/file.png
1925   reset
1926
1927   set title "Putting it All Together"
1928
1929   set xlabel "X"
1930   set xrange [-8:8]
1931   set xtics -8,2,8
1932
1933
1934   set ylabel "Y"
1935   set yrange [-20:70]
1936   set ytics -20,10,70
1937
1938   f(x) = x**2
1939   g(x) = x**3
1940   h(x) = 10*sqrt(abs(x))
1941
1942   plot f(x) w lp lw 1, g(x) w p lw 2, h(x) w l lw 3
1943 #+END_SRC
1944
1945 #+RESULTS:
1946 [[file:./temp/file.png]]
1947 * Ediff
1948 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1949   (with-eval-after-load 'ediff
1950     (setq ediff-split-window-function 'split-window-horizontally)
1951     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
1952     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
1953     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
1954     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
1955 #+END_SRC
1956
1957 * Dictionary
1958 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1959   (use-package bing-dict
1960     :ensure t
1961     :init
1962     (global-set-key (kbd "s-d") 'bing-dict-brief)
1963     :commands (bing-dict-brief))
1964 #+END_SRC
1965
1966 * Key Bindings
1967 Here are some global key bindings for basic editting
1968 ** Esc in minibuffer
1969 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
1970 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1971   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
1972   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
1973   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
1974   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
1975   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
1976   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
1977   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
1978   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
1979   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
1980
1981   ;; Also map s-h same as C-g
1982   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
1983 #+END_SRC
1984
1985 ** Project operations - =super=
1986 *** Projectile
1987 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1988   (use-package projectile
1989     :ensure t
1990     :init
1991     (setq projectile-enable-caching t)
1992     (setq projectile-cache-file (concat sd-temp-directory "projectile.cache"))
1993     :config
1994     (projectile-global-mode t))
1995
1996   (use-package persp-projectile
1997     :ensure t
1998     :config
1999     (persp-mode)
2000     :bind
2001     (:map projectile-mode-map
2002           ("s-t" . projectile-persp-switch-project)))
2003
2004   ;; projectile-find-file
2005   ;; projectile-switch-buffer
2006   ;; projectile-find-file-other-window
2007 #+END_SRC
2008
2009 *** project config =super= keybindings
2010 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2011   ;; (global-set-key (kbd "s-h") 'keyboard-quit)
2012   ;; (global-set-key (kbd "s-j") 'ido-switch-buffer)
2013   ;; (global-set-key (kbd "s-k") 'ido-find-file)
2014   ;; (global-set-key (kbd "s-l") 'sd/delete-current-window)
2015   ;; s-l  -->  goto-line
2016   ;; (global-set-key (kbd "s-/") 'swiper)
2017   ;; s-;  -->
2018   ;; s-'  -->  'next-multiframe-window
2019   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
2020
2021   (global-set-key (kbd "s-f") 'projectile-find-file)
2022   (global-set-key (kbd "s-`") 'mode-line-other-buffer)
2023
2024   (global-set-key (kbd "s-n") 'persp-next)
2025   (global-set-key (kbd "s-p") 'persp-prev)
2026
2027   (global-set-key (kbd "s-=") 'text-scale-increase)
2028   (global-set-key (kbd "s--") 'text-scale-decrease)
2029
2030   ;; (global-set-key (kbd "s-u") 'undo-tree-visualize)
2031
2032
2033   ;; someothers default mapping on super (command) key
2034   ;; s-s save-buffer
2035   ;; s-k kill-this-buffer
2036
2037
2038   ;; s-h  -->  ns-do-hide-emacs
2039   ;; s-j  -->  ido-switch-buffer  +
2040   ;; s-k  -->  kill-this-buffer
2041   ;; s-l  -->  goto-line
2042   ;; s-;  -->  undefined
2043   ;; s-'  -->  next-multiframe-window
2044   ;; s-ret --> toggle-frame-fullscreen +
2045
2046   ;; s-y  -->  ns-paste-secondary
2047   ;; s-u  -->  revert-buffer
2048   ;; s-i  -->  undefined - but used for iterm globally
2049   ;; s-o  -->  used for emacs globally
2050   ;; s-p  -->  projectile-persp-switch-project  +  
2051   ;; s-[  -->  next-buffer  +    
2052   ;; s-]  -->  previous-buffer +
2053
2054   ;; s-0  -->  undefined
2055   ;; s-9  -->  undefined
2056   ;; s-8  -->  undefined
2057   ;; s-7  -->  undefined
2058   ;; s-6  -->  undefined
2059   ;; s--  -->  center-line
2060   ;; s-=  -->  undefined
2061
2062   ;; s-n  -->  make-frame
2063   ;; s-m  -->  iconify-frame
2064   ;; s-b  -->  undefined
2065   ;; s-,  -->  customize
2066   ;; s-.  -->  undefined
2067   ;; s-/  -->  undefined
2068
2069   ;; s-g  -->  isearch-repeat-forward
2070   ;; s-f  -->  projectile-find-file   +
2071   ;; s-d  -->  isearch-repeat-background
2072   ;; s-s  -->  save-buffer
2073   ;; s-a  -->  make-whole-buffer
2074
2075   ;; s-b  -->  undefined
2076   ;; s-v  -->  yank
2077   ;; s-c  -->  ns-copy-including-secondary
2078
2079   ;; s-t  -->  ns-popup-font-panel
2080   ;; s-r  -->  undefined
2081   ;; s-e  -->  isearch-yanqk-kill
2082   ;; s-w  -->  delete-frame
2083   ;; s-q  -->  same-buffers-kill-emacs
2084
2085   ;; s-`  -->  other-frame
2086 #+END_SRC
2087
2088 ** Windown & Buffer - =C-o=
2089 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
2090 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
2091 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2092   (winner-mode 1)
2093
2094   (defun sd/delete-current-window ()
2095     (interactive)
2096     (if (> (length (window-list)) 1)
2097         (delete-window)
2098       (message "Only one Windows now!")))
2099
2100   (defun sd/toggle-max-windows ()
2101     "Set maximize current if there are multiple windows, if only
2102   one window, window undo"
2103     (interactive)
2104     (if (equal  (length (window-list)) 1)
2105         (winner-undo)
2106       (delete-other-windows)))
2107
2108   (defhydra sd/hydra-window (:color red :columns nil)
2109     "Window"
2110     ;; windows split
2111     ("h" windmove-left nil :exit t)
2112     ("j" windmove-down nil :exit t)
2113     ("k" windmove-up nil :exit t)
2114     ("l" windmove-right nil :exit t)
2115     ("H" hydra-move-splitter-left nil)
2116     ("J" hydra-move-splitter-down nil)
2117     ("K" hydra-move-splitter-up nil)
2118     ("L" hydra-move-splitter-right nil)
2119     ("v" (lambda ()
2120            (interactive)
2121            (split-window-right)
2122            (windmove-right))
2123      "vert" :exit t)
2124     ("x" (lambda ()
2125            (interactive)
2126            (split-window-below)
2127            (windmove-down))
2128      "horz" :exit t)
2129
2130     ;; buffer / windows switch
2131     ("o" sd/toggle-max-windows "one" :exit t)
2132     ("C-k" sd/delete-current-window "del" :exit t)
2133     ("'" other-window "other" :exit t)
2134     ;; ("a" ace-window "ace")
2135     ("s" ace-swap-window "swap")
2136     ;; ("i" ace-maximize-window "ace-one" :exit t)
2137
2138     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) "undo")
2139     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) "redo")
2140
2141     ;; ibuffer, dired, eshell, bookmarks
2142     ;; ("d" ace-delete-window "ace-one" :exit t)
2143     ("C-o" ido-switch-buffer "buf" :exit t)
2144     ("d" dired-jump "dired" :exit t)
2145     ("b" ibuffer "ibuffer" :exit t)
2146     ("m" bookmark-jump-other-window "open bmk" :exit t)
2147     ("M" bookmark-set "set bmk" :exit t)
2148
2149     ;; quit
2150     ("q" nil "cancel")
2151     ("<ESC>" nil)
2152     ("C-h" nil nil :exit t)
2153     ("C-j" nil nil :exit t)
2154     ;; ("C-k" nil :exit t)
2155     ("C-l" nil nil :exit t)
2156     ("C-;" nil nil :exit t)
2157     ("p" nil nil :exit t)
2158     ("n" nil nil :exit t)
2159     ("[" nil nil :exit t)
2160     ("]" nil nil :exit t)
2161     ("f" nil))
2162
2163   (global-unset-key (kbd "C-o"))
2164   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
2165 #+END_SRC
2166
2167 ** Motion
2168 - =C-M-=
2169 [[https://www.masteringemacs.org/article/effective-editing-movement][effective-editing-movement]]
2170 *** Command Arguments, numeric argumens
2171 =C-u 4= same as =C-4=, =M-4=
2172 *** Basic movement
2173 moving by line / word / 
2174 =C-f=, =C-b=, =C-p=, =C-n=, =M-f=, =M-b=
2175 =C-a=, =C-e=
2176 =M-m= (move first non-whitespace on this line) 
2177 =M-}=, =M-{=, Move forward end of paragraph
2178 =M-a=, =M-e=,  beginning / end of sentence
2179 =C-M-a=, =C-M-e=, move begining of defun
2180 =C-x ]=, =C-x [=, forward/backward one page
2181 =C-v=, =M-v=, =C-M-v=, =C-M-S-v= scroll down/up
2182 =M-<=, =M->=, beginning/end of buffer
2183 =M-r=, Repositiong point
2184
2185 *** Moving by S-expression / List
2186 *** Marks
2187 =C-<SPC>= set marks toggle the region
2188 =C-u C-<SPC>= Jump to the mark, repeated calls go further back the mark ring
2189 =C-x C-x= Exchanges the point and mark.
2190
2191 Stolen [[https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode][fixing-mark-commands-transient-mark-mode]]
2192 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2193   (defun push-mark-no-activate ()
2194     "Pushes `point' to `mark-ring' and does not activate the region
2195      Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
2196     (interactive)
2197     (push-mark (point) t nil)
2198     (message "Pushed mark to ring"))
2199
2200   ;; (global-set-key (kbd "C-`") 'push-mark-no-activate)
2201
2202   (defun jump-to-mark ()
2203     "Jumps to the local mark, respecting the `mark-ring' order.
2204     This is the same as using \\[set-mark-command] with the prefix argument."
2205     (interactive)
2206     (set-mark-command 1))
2207
2208   ;; (global-set-key (kbd "M-`") 'jump-to-mark)
2209
2210   (defun exchange-point-and-mark-no-activate ()
2211     "Identical to \\[exchange-point-and-mark] but will not activate the region."
2212     (interactive)
2213     (exchange-point-and-mark)
2214     (deactivate-mark nil))
2215
2216   ;; (define-key global-map [remap exchange-point-and-mark] 'exchange-point-and-mark-no-activate)
2217 #+END_SRC
2218
2219 Show the mark ring using =helm-mark-ring=, also mapping =M-`= to quit minibuffer. so that =M-`= can 
2220 toggle the mark ring. the best way is add a new action and mapping to =helm-source-mark-ring=,  but 
2221 since there is no map such as =helm-mark-ring=map=, so I cannot binding a key to the quit action.
2222 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2223   (setq mark-ring-max 50)
2224   (global-set-key (kbd "M-`") #'helm-mark-ring)
2225
2226   (define-key minibuffer-local-map (kbd "M-`") 'keyboard-escape-quit)
2227 #+END_SRC
2228
2229 =M-h= marks the next paragraph
2230 =C-x h= marks the whole buffer
2231 =C-M-h= marks the next defun
2232 =C-x C-p= marks the next page
2233 *** Registers
2234 Registers can save text, position, rectangles, file and configuration and other things.
2235 Here for movement, we can use register to save/jump position
2236 =C-x r SPC= store point in register
2237 =C-x r j= jump to register
2238 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2239   (use-package list-register
2240     :ensure t)
2241 #+END_SRC
2242
2243 *** Bookmarks
2244 As I would like use bookmakr for different buffer/files. to help to swith
2245 different buffer/file quickly. this setting is in Windows/buffer node
2246 =C-x r m= set a bookmarks
2247 =C-x r l= list bookmarks
2248 =C-x r b= jump to bookmarks
2249
2250 *** Search
2251 Search, replace and hightlight will in later paragraph
2252 *** =Avy= for easy motion
2253 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2254   (use-package avy
2255     :ensure t
2256     :config
2257     (avy-setup-default))
2258
2259   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
2260   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
2261   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
2262   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
2263
2264   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
2265   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
2266
2267   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2268   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
2269   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
2270
2271   ;; ;; will delete above 
2272   ;; (global-set-key (kbd "M-g j") 'avy-goto-line-below)
2273   ;; (global-set-key (kbd "M-g k") 'avy-goto-line-above)
2274   ;; (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
2275   ;; (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
2276   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2277   ;; (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
2278   ;; (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
2279 #+END_SRC
2280
2281 *** =Imenu= goto tag
2282 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2283   ;; (global-set-key (kbd "M-i") #'counsel-imenu)
2284   (global-set-key (kbd "M-i") #'imenu)
2285
2286   ;; (global-set-key (kbd "M-l") 'goto-line)
2287 #+END_SRC
2288
2289 *** Go-to line
2290 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2291   (global-set-key (kbd "M-l") 'goto-line)
2292 #+END_SRC
2293
2294 ** Edit
2295 *** basic editting
2296 - cut, yank, =C-w=, =C-y=
2297 - save, revert
2298 - undo, redo - undo-tree
2299 - select, expand-region
2300 - spell check, flyspell
2301
2302 *** Kill ring
2303 =helm-show-kill-ring=
2304 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2305   (setq kill-ring-max 100)                ; default is 60p
2306   (global-set-key (kbd "M-y") #'helm-show-kill-ring)
2307 #+END_SRC
2308
2309 *** undo-tree
2310 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2311   (use-package undo-tree
2312     :ensure t
2313     :config
2314     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
2315     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
2316     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
2317     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
2318     (global-undo-tree-mode 1))
2319
2320   (global-set-key (kbd "s-u") 'undo-tree-visualize)
2321 #+END_SRC
2322
2323 *** flyspell
2324 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
2325 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2326   (setenv "DICPATH" "/usr/local/share/hunspell")
2327
2328   (when (executable-find "hunspell")
2329     (setq-default ispell-program-name "hunspell")
2330     (setq ispell-really-hunspell t))
2331
2332   ;; (defun text-mode-hook-setup ()
2333   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
2334   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
2335   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
2336   ;; (add-hook 'text-mode-hook 'flyspell-mode)
2337
2338   ;; enable flyspell check on comments and strings in progmamming modes
2339   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
2340
2341   ;; I don't use the default mappings
2342   (with-eval-after-load 'flyspell
2343     (define-key flyspell-mode-map (kbd "C-;") nil)
2344     (define-key flyspell-mode-map (kbd "C-,") nil)
2345     (define-key flyspell-mode-map (kbd "C-.") nil))
2346 #+END_SRC
2347
2348 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]]
2349 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2350   ;; NO spell check for embedded snippets
2351   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
2352     (let ((rlt ad-return-value)
2353           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
2354           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
2355           old-flag
2356           b e)
2357       (when ad-return-value
2358         (save-excursion
2359           (setq old-flag case-fold-search)
2360           (setq case-fold-search t)
2361           (setq b (re-search-backward begin-regexp nil t))
2362           (if b (setq e (re-search-forward end-regexp nil t)))
2363           (setq case-fold-search old-flag))
2364         (if (and b e (< (point) e)) (setq rlt nil)))
2365       (setq ad-return-value rlt)))
2366 #+END_SRC
2367
2368 ** Search & Replace / hightlight =M-s=
2369 *** isearch
2370 =C-s=, =C-r=, 
2371 =C-w= add word at point to search string, 
2372 =M-%= query replace
2373 =C-M-y= add character at point to search string
2374 =M-s C-e= add reset of line at point
2375 =C-y= yank from clipboard to search string
2376 =M-n=, =M-p=, history
2377 =C-M-i= complete search string
2378 set the isearch history size, the default is only =16=
2379 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2380   (setq history-length 5000)
2381   (setq regexp-search-ring-max 1000)
2382   (setq search-ring-max 1000)
2383
2384   ;; when search a word or a symbol , also add the word into regexp-search-ring
2385   (defadvice isearch-update-ring (after sd/isearch-update-ring (string &optional regexp) activate)
2386     "Add search-ring to regexp-search-ring"
2387     (unless regexp
2388       (add-to-history 'regexp-search-ring string regexp-search-ring-max)))
2389 #+END_SRC
2390
2391 *** =M-s= prefix
2392 use the prefix =M-s= for searching in buffers
2393 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2394   (defun sd/make-keymap (key bindings)
2395     (setq keymap (make-sparse-keymap))
2396     (dolist (binding bindings)
2397       (define-key keymap (car binding) (cdr binding)))
2398     (global-set-key key keymap))
2399
2400   ;; (sd/make-keymap "\M-s"
2401   ;;                 '(("w" . save-buffer)
2402   ;;                   ;; ("\M-w" . save-buffer)
2403   ;;                   ("e" . revert-buffer)
2404   ;;                   ("s" . isearch-forward-regexp)
2405   ;;                   ("\M-s" . isearch-forward-regexp)
2406   ;;                   ("r" . isearch-backward-regexp)
2407   ;;                   ("." . isearch-forward-symbol-at-point)
2408   ;;                   ("o" . occur)
2409   ;;                   ;; ("h" . highlight-symbol-at-point)
2410   ;;                   ("h" . highlight-symbol)
2411   ;;                   ("m" . highlight-regexp)
2412   ;;                   ("l" . highlight-lines-matching-regexp)
2413   ;;                   ("M" . unhighlight-regexp)
2414   ;;                   ("f" . keyboard-quit)
2415   ;;                   ("q" . keyboard-quit)))
2416 #+END_SRC
2417
2418 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2419   (use-package highlight-symbol
2420     :ensure t)
2421
2422   (defhydra sd/search-replace (:color red :columns nil)
2423     "Search"
2424     ("w" save-buffer "save" :exit t)
2425     ("e" revert-buffer "revert" :exit t)
2426     ("u" undo-tree-visualize "undo" :exit t)
2427     ("s" isearch-forward-regexp "s-search" :exit t)
2428     ("M-s" isearch-forward-regexp "s-search" :exit t)
2429     ("r" isearch-backward-regexp "r-search" :exit t)
2430     ("." isearch-forward-symbol-at-point "search point" :exit t)
2431     ("/" swiper "swiper" :exit t)
2432     ("o" occur "occur" :exit t)
2433     ("h" highlight-symbol "higlight" :exit t)
2434     ("l" highlight-lines-matching-regexp "higlight line" :exit t)
2435     ("m" highlight-regexp "higlight" :exit t)
2436     ("M" unhighlight-regexp "unhiglight" :exit t)
2437     ("q" nil "quit")
2438     ("f" nil))
2439
2440   (global-unset-key (kbd "M-s"))
2441   (global-set-key (kbd "M-s") 'sd/search-replace/body)
2442
2443
2444   ;; search and replace and highlight
2445   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
2446   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
2447   (global-set-key (kbd "s-[") 'highlight-symbol-next)
2448   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
2449   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
2450 #+END_SRC
2451
2452 *** Occur
2453 Occur search key bindings
2454 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2455   (defun sd/occur-keys ()
2456     "My key bindings in occur-mode"
2457     (interactive)
2458     (switch-to-buffer-other-window "*Occur*")
2459     (define-key occur-mode-map (kbd "C-o") nil)
2460     (define-key occur-mode-map (kbd "C-n") (lambda ()
2461                                              (interactive)
2462                                              (occur-next)
2463                                              (occur-mode-goto-occurrence-other-window)
2464                                              (recenter)
2465                                              (other-window 1)))
2466     (define-key occur-mode-map (kbd "C-p") (lambda ()
2467                                              (interactive)
2468                                              (occur-prev)
2469                                              (occur-mode-goto-occurrence-other-window)
2470                                              (recenter)
2471                                              (other-window 1))))
2472
2473   (add-hook 'occur-hook #'sd/occur-keys)
2474
2475   (use-package color-moccur
2476     :ensure t
2477     :commands (isearch-moccur isearch-all)
2478     :init
2479     (setq isearch-lazy-highlight t)
2480     :config
2481     (use-package moccur-edit))
2482 #+END_SRC
2483
2484 *** Swiper
2485 stolen from [[https://github.com/mariolong/emacs.d/blob/f6a061594ef1b5d1f4750e9dad9dc97d6e122840/emacs-init.org][here]]
2486 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2487   (use-package swiper
2488     :ensure t
2489     :init
2490     (setq ivy-use-virtual-buffers t)
2491     (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
2492     :config
2493     (ivy-mode)
2494     (global-set-key (kbd "s-/") 'swiper)
2495     (define-key swiper-map (kbd "M-r") 'swiper-query-replace)
2496     (define-key swiper-map (kbd "C-.") (lambda ()
2497                                          (interactive)
2498                                          (insert (format "%s" (with-ivy-window (thing-at-point 'word))))))
2499     (define-key swiper-map (kbd "M-.") (lambda ()
2500                                          (interactive)
2501                                          (insert (format "%s" (with-ivy-window (thing-at-point 'symbol)))))))
2502 #+END_SRC
2503
2504 ** Expand region map
2505 *** Install =expand-region=
2506 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2507   (use-package expand-region
2508     :ensure t
2509     :config
2510     ;; (global-set-key (kbd "C-=") 'er/expand-region)
2511     )
2512 #+END_SRC
2513
2514 *** Add a =hydra= map for =expand-region= operations
2515 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2516   (defun sd/mark-line ()
2517     "Mark current line without whitespace beginning"
2518     (interactive)
2519     (back-to-indentation)
2520     (set-mark (line-end-position)))
2521
2522   (defhydra sd/expand-selected (:color pink :columns nil
2523                                        :post (deactivate-mark))
2524     "Selected"
2525     ;; select
2526     ;; ("e"  er/expand-region "+")
2527     ("SPC"  er/expand-region "+")
2528     ;; ("c"  er/contract-region "-")
2529     ("S-SPC"  er/contract-region "-")
2530     ("r"  (lambda ()
2531             (interactive)
2532             (er/contract-region 0))
2533      "reset")
2534
2535     ("i'" er/mark-inside-quotes "in")
2536     ("i\"" er/mark-inside-quotes nil)
2537     ("o'" er/mark-outside-quotes "out")
2538     ("o\"" er/mark-outside-quotes nil)
2539
2540     ("i{" er/mark-inside-pairs nil)
2541     ("i(" er/mark-inside-pairs nil)
2542     ("o{" er/mark-inside-pairs nil)
2543     ("o(" er/mark-inside-pairs nil)
2544
2545     ("p"  er/mark-paragraph "paragraph")
2546
2547     ("l"  sd/mark-line "line")
2548     ("u"  er/mark-url "url")
2549     ("f"  er/mark-defun "fun")
2550     ("n"  er/mark-next-accessor "next")
2551
2552     ("x" exchange-point-and-mark "exchange")
2553
2554     ;; Move
2555     ;; ("h" backward-char nil)
2556     ;; ("j" next-line nil)
2557     ;; ("k" previous-line nil)
2558     ;; ("l" foreward-char nil)
2559
2560     ;; Search
2561     ;; higlight
2562
2563     ;; exit
2564     ("d" kill-region "delete" :exit t)
2565
2566     ("y" kill-ring-save "yank" :exit t)
2567     ("M-SPC" nil "quit" :exit t)
2568     ("C-SPC" nil "quit" :exit t)
2569     ("q" nil "quit" :exit t))
2570
2571   (global-set-key (kbd "M-SPC") (lambda ()
2572                                 (interactive)
2573                                 (er/mark-word)
2574                                 (sd/expand-selected/body)))
2575 #+END_SRC
2576
2577 *** TODO make expand-region hydra work with lispy selected
2578
2579 * TODO Convert ASCII to key
2580 ** map =function-key-map= [[http://academic.evergreen.edu/projects/biophysics/technotes/program/ascii_ctrl.htm][ascii_ctrl]]
2581 new file =C-x C-f C-f=
2582
2583 ** write color syntax for =Man-mode=
2584
2585 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2586   (font-lock-add-keywords 'perl-mode '(("\\(|\\w+?\\(,\\w+?\\)?|\\)" 1 'py-builtins-face)))
2587 #+END_SRC
2588
2589 * TODO jump last change point
2590 * TODO emms mode-line
2591
2592 * =C-u C-h a= search funtions 
2593 =apropos-command= 
2594
2595 * key
2596 - passion
2597 - vision
2598 - mission
2599
2600 * M prefix
2601 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2602
2603   ;; M-h - mark-paragraph
2604   ;; M-j - new line indent
2605   ;; M-k - kill-sentence
2606   ;; M-l - downcase words     ====== goto-line
2607   ;; M-; - comments
2608   ;; M-'- abbrev-prefix-mark  =======
2609   ;; M-RET none                ======
2610
2611   ;; M-y - yank
2612   ;; M-u - upcase word
2613   ;; M-i -                 ====== imenu
2614   ;; M-o             ====== prefix
2615   ;; M-p
2616   ;; M-[                   =====
2617   ;; M-]              ========
2618   ;; M-\   deleter horizontal space =====
2619
2620   ;; M-n 
2621   ;; M-m ---- indent
2622   ;; M-, --- mark stack====== =
2623   ;; M-. lisp-goto-symboo, find definitation
2624
2625   ;; M-a 
2626   ;; M-s ===== 
2627   ;; M-d
2628   ;; M-f
2629   ;; M-g - prefix
2630
2631   ;; M-q - lisp fill, fill paragraph
2632   ;; M-w 
2633   ;; M-e
2634   ;; M-r  - rePositioning 
2635   ;; M-t transpose word 
2636
2637   ;; M-z zap-to-char
2638   ;; M-x
2639   ;; M-c  capitalize-word
2640   ;; M-v 
2641   ;; M-b 
2642 #+END_SRC
2643