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