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