emacs - magit change git-commit-summary-max-length, don't ask to confirm when the...
[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     ;; default is 50
1014     (setq git-commit-summary-max-length 72)
1015     :commands magit-status magit-blame
1016     :config
1017     (dolist (map (list magit-status-mode-map
1018                        magit-log-mode-map
1019                        magit-diff-mode-map
1020                        magit-staged-section-map))
1021       (define-key map "j" 'magit-section-forward)
1022       (define-key map "k" 'magit-section-backward)
1023       (define-key map "D" 'magit-discard)
1024       (define-key map "O" 'magit-discard-file)
1025       (define-key map "n" nil)
1026       (define-key map "p" nil)
1027       (define-key map "v" 'recenter-top-bottom)
1028       (define-key map "i" 'magit-section-toggle)))
1029 #+END_SRC
1030
1031 * Eshell
1032 ** Eshell alias
1033 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1034   (defalias 'e 'find-file)
1035   (defalias 'ff 'find-file)
1036   (defalias 'ee 'find-files)
1037 #+END_SRC
1038
1039 ** eshell temp directory
1040 set default eshell history folder
1041 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1042   (setq eshell-directory-name (concat  sd-temp-directory "eshell"))
1043 #+END_SRC
1044
1045 ** Eshell erase buffer
1046 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1047   (defun sd/eshell-clear-buffer ()
1048     "Clear eshell buffer"
1049     (interactive)
1050     (let ((inhibit-read-only t))
1051       (erase-buffer)
1052       (eshell-send-input)))
1053
1054    (add-hook 'eshell-mode-hook (lambda ()
1055                                 (local-set-key (kbd "C-l") 'sd/eshell-clear-buffer)))
1056 #+END_SRC
1057
1058 ** Toggle Eshell
1059 Toggle an eshell in split window below, refer [[http://www.howardism.org/Technical/Emacs/eshell-fun.html][eshell-here]]
1060 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1061   (defun sd/window-has-eshell ()
1062     "Check if current windows list has a eshell buffer, and return the window"
1063     (interactive)
1064     (let ((ret nil))
1065       (walk-windows (lambda (window)
1066                       (if (equal (with-current-buffer (window-buffer window) major-mode)
1067                                  'eshell-mode)
1068                           (setq ret window)))
1069                     nil nil)
1070       ret))
1071
1072   (defun sd/toggle-eshell-here ()
1073     "Toggle a eshell buffer vertically"
1074     (interactive)
1075     (if (sd/window-has-eshell)
1076         (if (equal major-mode 'eshell-mode)
1077             (progn
1078               (if (equal (length (window-list)) 1)
1079                   (mode-line-other-buffer)
1080                 (delete-window)))
1081           (select-window (sd/window-has-eshell)))
1082       (progn
1083         (let ((dir default-directory))
1084         
1085           (split-window-vertically (- (/ (window-total-height) 3)))
1086           (other-window 1)
1087           (unless (and (boundp 'eshell-buffer-name) (get-buffer eshell-buffer-name))
1088             (eshell))
1089           (switch-to-buffer eshell-buffer-name)
1090           (goto-char (point-max))
1091           (eshell-kill-input)
1092           (insert (format "cd %s" dir))
1093           (eshell-send-input)))))
1094
1095   ;; (global-unset-key (kbd "M-`"))
1096   (global-set-key (kbd "s-e") 'sd/toggle-eshell-here)
1097 #+END_SRC
1098
1099 ** TODO smart display
1100 * Misc Settings
1101
1102 ** [[https://github.com/abo-abo/hydra][Hydra]]
1103 *** hydra install
1104 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1105   (use-package hydra
1106     :ensure t)
1107   ;; disable new line in minibuffer when hint hydra
1108   (setq hydra-lv nil)
1109 #+END_SRC
1110
1111 *** Windmove Splitter
1112
1113 Refer [[https://github.com/abo-abo/hydra/blob/master/hydra-examples.el][hydra-example]], to enlarge or shrink the windows splitter
1114
1115 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1116
1117   (defun hydra-move-splitter-left (arg)
1118     "Move window splitter left."
1119     (interactive "p")
1120     (if (let ((windmove-wrap-around))
1121           (windmove-find-other-window 'right))
1122         (shrink-window-horizontally arg)
1123       (enlarge-window-horizontally arg)))
1124
1125   (defun hydra-move-splitter-right (arg)
1126     "Move window splitter right."
1127     (interactive "p")
1128     (if (let ((windmove-wrap-around))
1129           (windmove-find-other-window 'right))
1130         (enlarge-window-horizontally arg)
1131       (shrink-window-horizontally arg)))
1132
1133   (defun hydra-move-splitter-up (arg)
1134     "Move window splitter up."
1135     (interactive "p")
1136     (if (let ((windmove-wrap-around))
1137           (windmove-find-other-window 'up))
1138         (enlarge-window arg)
1139       (shrink-window arg)))
1140
1141   (defun hydra-move-splitter-down (arg)
1142     "Move window splitter down."
1143     (interactive "p")
1144     (if (let ((windmove-wrap-around))
1145           (windmove-find-other-window 'up))
1146         (shrink-window arg)
1147       (enlarge-window arg)))
1148
1149 #+END_SRC
1150
1151 *** hydra misc
1152 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1153   (defhydra sd/hydra-misc (:color red :columns nil)
1154     "Misc"
1155     ("e" eshell "eshell" :exit t)
1156     ("p" (lambda ()
1157            (interactive)
1158            (if (not (eq nil (get-buffer "*Packages*")))
1159                (switch-to-buffer "*Packages*")
1160              (package-list-packages)))
1161      "list-package" :exit t)
1162     ("g" magit-status "git-status" :exit t)
1163     ("'" mode-line-other-buffer "last buffer" :exit t)
1164     ("C-'" mode-line-other-buffer "last buffer" :exit t)
1165     ("m" man "man" :exit t)
1166     ("d" dired-jump "dired" :exit t)
1167     ("b" ibuffer "ibuffer" :exit t)
1168     ("q" nil "quit")
1169     ("f" nil "quit"))
1170
1171   (global-set-key (kbd "C-'") 'sd/hydra-misc/body)
1172 #+END_SRC
1173
1174 *** hydra launcher
1175 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1176   (defhydra sd/hydra-launcher (:color blue :columns 2)
1177     "Launch"
1178     ("e" emms "emms" :exit t)
1179     ("q" nil "cancel"))
1180 #+END_SRC
1181
1182 ** Line Number
1183
1184 Enable linum mode on programming modes
1185
1186 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1187   (add-hook 'prog-mode-hook 'linum-mode)
1188   ;; (add-hook 'prog-mode-hook (lambda ()
1189   ;;                             (setq-default indicate-empty-lines t)))
1190 #+END_SRC
1191
1192 Fix the font size of line number
1193
1194 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1195
1196   (defun fix-linum-size ()
1197        (interactive)
1198        (set-face-attribute 'linum nil :height 110))
1199
1200   (add-hook 'linum-mode-hook 'fix-linum-size)
1201
1202 #+END_SRC
1203
1204 I like [[https://github.com/coldnew/linum-relative][linum-relative]], just like the =set relativenumber= on =vim=
1205
1206 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1207
1208   (use-package linum-relative
1209     :ensure t
1210     :config
1211     (defun linum-new-mode ()
1212       "If line numbers aren't displayed, then display them.
1213   Otherwise, toggle between absolute and relative numbers."
1214       (interactive)
1215       (if linum-mode
1216           (linum-relative-toggle)
1217         (linum-mode 1)))
1218
1219     :bind
1220     ("A-k" . linum-new-mode))
1221
1222   ;; auto enable linum-new-mode in programming modes
1223   (add-hook 'prog-mode-hook 'linum-relative-mode)
1224
1225 #+END_SRC
1226
1227 ** Save File Position
1228
1229 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1230
1231   (require 'saveplace)
1232   (setq-default save-place t)
1233   (setq save-place-forget-unreadable-files t)
1234   (setq save-place-skip-check-regexp "\\`/\\(?:cdrom\\|floppy\\|mnt\\|/[0-9]\\|\\(?:[^@/:]*@\\)?[^@/:]*[^@/:.]:\\)")
1235
1236 #+END_SRC
1237
1238 ** Multi-term
1239
1240 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1241
1242   (use-package multi-term
1243     :ensure t)
1244
1245 #+END_SRC
1246
1247 ** ace-link
1248
1249 [[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
1250 Type =o= to go to the link
1251
1252 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1253
1254   (use-package ace-link
1255     :ensure t
1256     :init
1257     (ace-link-setup-default))
1258
1259 #+END_SRC
1260
1261 ** Smart Parens
1262
1263 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1264
1265   (use-package smartparens
1266     :ensure t
1267     :config
1268     (progn
1269       (require 'smartparens-config)
1270       (add-hook 'prog-mode-hook 'smartparens-mode)))
1271
1272 #+END_SRC
1273
1274 ** Ace-Windows
1275
1276 [[https://github.com/abo-abo/ace-window][ace-window]] 
1277
1278 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1279
1280   (use-package ace-window
1281     :ensure t
1282     :defer t
1283   ;  :init
1284   ;  (global-set-key (kbd "M-o") 'ace-window)
1285     :config
1286     (setq aw-keys '(?a ?s ?d ?f ?j ?k ?l)))
1287
1288 #+END_SRC
1289
1290 ** Which key
1291
1292 [[https://github.com/justbur/emacs-which-key][which-key]] show the key bindings 
1293
1294 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1295
1296   (use-package which-key
1297     :ensure t
1298     :config
1299     (which-key-mode))
1300
1301 #+END_SRC
1302
1303 ** Tabbar
1304
1305 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1306
1307   ;; (use-package tabbar-ruler
1308   ;;   :ensure t
1309   ;;   :init
1310   ;;   (setq tabbar-ruler-global-tabbar t)
1311   ;;   (setq tabbar-ruler-global-ruler t)
1312   ;;   (setq tabbar-ruler-popu-menu t)
1313   ;;   (setq tabbar-ruler-popu-toolbar t)
1314   ;;   (setq tabbar-use-images t)
1315   ;;   :config
1316   ;;   (tabbar-ruler-group-by-projectile-project)
1317   ;;   (global-set-key (kbd "s-1") 'tabbar-forward-group)
1318   ;;   (global-set-key (kbd "s-2") 'tabbar-ruler-forward))
1319
1320 #+END_SRC
1321
1322 ** View only for some directory
1323 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]]
1324 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1325   (dir-locals-set-class-variables
1326    'emacs
1327    '((nil . ((buffer-read-only . t)
1328              (show-trailing-whitespace . nil)
1329              (tab-width . 8)
1330              (eval . (whitespace-mode -1))))))
1331
1332   ;; (dir-locals-set-directory-class (expand-file-name "/usr/local/share/emacs") 'emacs)
1333   (dir-locals-set-directory-class "/usr/local/Cellar/emacs" 'emacs)
1334   ;; (dir-locals-set-directory-class "~/.emacs.d/elpa" 'emacs)
1335   (dir-locals-set-directory-class "~/dotfiles/emacs.d/elpa" 'emacs)
1336   (dir-locals-set-directory-class "~/dotfiles/emacs.d/el-get" 'emacs)
1337 #+END_SRC
1338
1339 ** Info plus
1340 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1341   (el-get-bundle info+
1342     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/info+.el"
1343     ;; (require 'info+)
1344     )
1345
1346   (with-eval-after-load 'info
1347     (require 'info+))
1348 #+END_SRC
1349
1350 ** TODO bookmark
1351
1352 ** TODO Calendar
1353 ** advice info
1354 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1355   (defun sd/info-mode ()
1356     (interactive)
1357     (unless (equal major-mode 'Info-mode)
1358       (unless (> (length (window-list)) 1)
1359         (split-window-right))
1360       (other-window 1)
1361       ;; (info)
1362       ))
1363
1364   ;; (global-set-key (kbd "C-h i") 'sd/info-mode)
1365
1366   ;; open Info buffer in other window instead of current window
1367   (defadvice info (before my-info (&optional file buf) activate)
1368     (sd/info-mode))
1369
1370   (defadvice Info-exit (after my-info-exit activate)
1371     (sd/delete-current-window))
1372 #+END_SRC
1373
1374 ** TODO Man mode
1375 Color for Man-mode
1376
1377 ** TODO UTF8
1378 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1379   ;; (set-language-environment "UTF-8")
1380   ;; (set-default-coding-systems 'utf-8)
1381 #+END_SRC
1382
1383 ** Demo It
1384 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1385   ;; (el-get-bundle howardabrams/demo-it)
1386
1387   (use-package org-tree-slide
1388     :ensure t)
1389
1390   ;; (use-package yasnippet
1391   ;;   :ensure t)
1392 #+END_SRC
1393
1394 ** Presentation
1395 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1396   (use-package org-tree-slide
1397     :ensure
1398     :config
1399     ;; (define-key org-mode-map "\C-ccp" 'org-tree-slide-mode)
1400     (define-key org-tree-slide-mode-map (kbd "<ESC>") 'org-tree-slide-content)
1401     (define-key org-tree-slide-mode-map (kbd "<SPACE>") 'org-tree-slide-move-next-tree)
1402     (define-key org-tree-slide-mode-map [escape] 'org-tree-slide-move-previous-tree))
1403 #+END_SRC
1404
1405 ** pdf-tools
1406 #+BEGIN_SRC sh
1407   brew install poppler
1408 #+END_SRC
1409
1410 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1411   (use-package pdf-tools
1412     :ensure t
1413     :init
1414     ;; run to complete the installation
1415     (pdf-tools-install)
1416     :config
1417     (add-to-list 'auto-mode-alist '("\.pdf$" . pdf-view-mode))
1418     (add-hook 'pdf-outline-buffer-mode-hook #'sd/pdf-outline-map))
1419
1420   (defun sd/pdf-outline-map ()
1421     "My keybindings in pdf-outline-map"
1422     (interactive)
1423     (define-key pdf-outline-buffer-mode-map (kbd "C-o") nil)
1424     (define-key pdf-outline-buffer-mode-map (kbd "i") 'outline-toggle-children)
1425     (define-key pdf-outline-buffer-mode-map (kbd "j") 'next-line)
1426     (define-key pdf-outline-buffer-mode-map (kbd "k") 'previous-line))
1427 #+END_SRC
1428
1429 * Dired
1430 ** Dired config
1431 =C-o= is defined as a global key for window operation, here unset it in dired mode
1432 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1433   (defun sd/dired-new-file ()
1434     "Create a new file in dired mode"
1435     (interactive)
1436     (call-interactively 'find-file))
1437
1438   (defun sd/dired-key-map ()
1439     "My keybindings for dired"
1440     (interactive)
1441     (define-key dired-mode-map (kbd "SPC") 'scroll-up-command)
1442     (define-key dired-mode-map (kbd "S-SPC") 'scroll-down-command)
1443     (define-key dired-mode-map (kbd "C-o") nil)
1444     (define-key dired-mode-map (kbd "M-s") nil)
1445     (define-key dired-mode-map (kbd "l") 'dired-isearch-filenames)
1446     (define-key dired-mode-map (kbd "H") 'dired-omit-mode)
1447     (define-key dired-mode-map (kbd "DEL") (lambda () (interactive) (find-alternate-file "..")))
1448     (define-key dired-mode-map (kbd "c") 'sd/dired-new-file))
1449
1450   (use-package dired
1451     :config
1452     (require 'dired-x)
1453     (setq dired-omit-mode t)
1454     (setq dired-omit-files (concat dired-omit-files "\\|^\\..+$"))
1455     (add-hook 'dired-mode-hook (lambda ()
1456                                  (sd/dired-key-map)
1457                                  (dired-omit-mode))))
1458
1459   (setq dired-guess-shell-alist-user
1460         '(("\\.pdf\\'" "evince" "okular")
1461           ("\\.\\(?:djvu\\|eps\\)\\'" "evince")
1462           ("\\.\\(?:jpg\\|jpeg\\|png\\|gif\\|xpm\\)\\'" "eog")
1463           ("\\.\\(?:xcf\\)\\'" "gimp")
1464           ("\\.csv\\'" "libreoffice")
1465           ("\\.tex\\'" "pdflatex" "latex")
1466           ("\\.\\(?:mp4\\|mkv\\|avi\\|flv\\|ogv\\)\\(?:\\.part\\)?\\'"
1467            "vlc")
1468           ("\\.\\(?:mp3\\|flac\\)\\'" "rhythmbox")
1469           ("\\.html?\\'" "firefox")
1470           ("\\.cue?\\'" "audacious")))
1471
1472 #+END_SRC
1473
1474 I would like change the default dired summary 
1475 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1476   (defadvice dired-summary (around sd/dired-summary activate)
1477     "Revisied dired summary."
1478     (interactive)
1479     (dired-why)
1480     (message
1481      "Δ: d-delete, u-ndelete, x-punge, f-ind, o-ther window, R-ename, C-opy, +new dir, ?-summary"))
1482 #+END_SRC
1483
1484 When create a new directory, I want to disalbe =ido= completion. see [[http://stackoverflow.com/questions/7479565/emacs-ido-mode-and-creating-new-files-in-directories-it-keeps-changing-the-dire][here]]. Thhis code snippets copied
1485 from [[https://emacs.stackexchange.com/questions/13713/how-to-disable-ido-in-dired-create-directory/13795#13795?newreg%3Ddb17c20f7af3490fb11cf15f1d888e9e][How to disable IDO in â€˜dired-create-directory’]]
1486 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1487   (defun mk-anti-ido-advice (func &rest args)
1488     "Temporarily disable IDO and call function FUNC with arguments ARGS."
1489     (interactive)
1490     (let ((read-file-name-function #'read-file-name-default))
1491       (if (called-interactively-p 'any)
1492           (call-interactively func)
1493         (apply func args))))
1494
1495   (defun mk-disable-ido (command)
1496     "Disable IDO when command COMMAND is called."
1497     (advice-add command :around #'mk-anti-ido-advice))
1498 #+END_SRC
1499
1500 Disalble =ido= when new a directory or file in =dired= mode
1501 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1502   ;; call the function which you want to disable ido
1503   (mk-disable-ido 'dired-create-directory)
1504   (mk-disable-ido 'sd/dired-new-file)
1505 #+END_SRC
1506
1507 ** Dired+
1508 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1509   (use-package dired+
1510     :ensure t
1511     :init
1512     (setq diredp-hide-details-initially-flag nil)
1513     :config
1514     (define-key dired-mode-map (kbd "j") 'diredp-next-line)
1515     (define-key dired-mode-map (kbd "k") 'diredp-previous-line)
1516     (define-key dired-mode-map (kbd "g") 'dired-goto-file))
1517 #+END_SRC
1518
1519 ** dired-hacks
1520 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1521   (use-package dired-hacks-utils
1522     :ensure t)
1523
1524
1525   (defconst my-dired-media-files-extensions '("mp3" "mp4" "MP3" "MP4" "avi" "mpg" "flv" "ogg" "wmv" "mkv" "mov" "wma")
1526   "Media file extensions that should launch in VLC.")
1527
1528     (add-to-list 'dired-guess-shell-alist-user
1529                  (list (concat "\\."
1530                                (regexp-opt my-dired-media-files-extensions)
1531                                "\\'") "mplayer"))
1532 #+END_SRC
1533
1534 * Ibuffer
1535 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1536   (global-set-key (kbd "s-b") 'ibuffer)
1537
1538   (with-eval-after-load 'ibuffer
1539     (define-key ibuffer-mode-map (kbd "C-o") nil)
1540     (define-key ibuffer-mode-map (kbd "j") 'ibuffer-forward-line)
1541     (define-key ibuffer-mode-map (kbd "k") 'ibuffer-backward-line)
1542     (define-key ibuffer-mode-map (kbd "r") 'ibuffer-update)
1543     (define-key ibuffer-mode-map (kbd "g") 'ibuffer-jump-to-buffer))
1544 #+END_SRC
1545
1546 * Completion
1547 company mode and company-statistics
1548 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1549   (use-package company
1550     :ensure t
1551     :diminish company-mode
1552     :init (setq company-idle-delay 0.1)
1553     :config
1554     (global-company-mode))
1555
1556   (use-package company-statistics
1557     :ensure t
1558     :config
1559     (company-statistics-mode))
1560 #+END_SRC
1561
1562 * Programming Language
1563 ** Emacs Lisp
1564 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1565   (use-package color-identifiers-mode
1566     :ensure t
1567     :init
1568     (add-hook 'emacs-lisp-mode-hook 'color-identifiers-mode)
1569
1570     :diminish color-identifiers-mode)
1571
1572   (global-prettify-symbols-mode t)
1573 #+END_SRC
1574
1575 In Lisp Mode, =M-o= is defined, but I use this for global hydra window. So here disable this key
1576 bindings in =lispy-mode-map= after loaded. see [[http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings][here]]
1577 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1578   (use-package lispy
1579     :ensure t
1580     :init
1581     (eval-after-load "lispy"
1582       `(progn
1583          (define-key lispy-mode-map (kbd "M-o") nil)))
1584     :config
1585     (add-hook 'emacs-lisp-mode-hook (lambda () (lispy-mode 1))))
1586 #+END_SRC
1587
1588 ** Perl
1589 *** CPerl mode
1590 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
1591 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1592   (defalias 'perl-mode 'cperl-mode)
1593
1594   ;; (setq cperl-hairy t)
1595   ;; Turns on most of the CPerlMode options
1596   (setq cperl-auto-newline t)
1597   (setq cperl-highlight-variables-indiscriminately t)
1598   ;(setq cperl-indent-level 4)
1599   ;(setq cperl-continued-statement-offset 4)
1600   (setq cperl-close-paren-offset -4)
1601   (setq cperl-indent-parents-as-block t)
1602   (setq cperl-tab-always-indent t)
1603   ;(setq cperl-brace-offset  0)
1604
1605   (add-hook 'cperl-mode-hook
1606             '(lambda ()
1607                (cperl-set-style "C++")))
1608
1609   (defalias 'perldoc 'cperl-perldoc)
1610 #+END_SRC
1611
1612 *** Perl template
1613 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
1614 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1615   (eval-after-load 'autoinsert
1616     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
1617        '(
1618          "Empty"
1619          "#!/usr/bin/perl -w" \n
1620          \n
1621          "use strict;" >  \n \n
1622          > _
1623          )))
1624 #+END_SRC
1625
1626 *** Perl Keywords
1627 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1628   (font-lock-add-keywords 'cperl-mode
1629                           '(("\\(say\\)" . cperl-nonoverridable-face)
1630                             ("\\([0-9.]\\)*" . font-lock-constant-face)
1631                             ("\".*\\(\\\n\\).*\"" . font-lock-constant-face)
1632                             ("\n" . font-lock-constant-face)
1633                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
1634
1635     ;; (font-lock-add-keywords 'Man-mode
1636     ;;                         '(("\\(NAME\\)" . font-lock-function-name-face)))
1637
1638 #+END_SRC
1639
1640 *** Run Perl
1641 Change the compile-command to set the default command run when call =compile=
1642 Mapping =s-r= (on Mac, it's =Command + R= to run the script. Here =current-prefix-arg= is set
1643 to call =compilation=  interactively.
1644 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1645   (defun my-perl-hook ()
1646     (progn
1647       (setq-local compilation-read-command nil)
1648       (set (make-local-variable 'compile-command)
1649            (concat "/usr/bin/perl "
1650                    (if buffer-file-name
1651                        (shell-quote-argument buffer-file-name))))
1652       (local-set-key (kbd "s-r")
1653                      (lambda ()
1654                        (interactive)
1655                                           ;                       (setq current-prefix-arg '(4)) ; C-u
1656                        (call-interactively 'compile)))))
1657
1658   (add-hook 'cperl-mode-hook 'my-perl-hook)
1659 #+END_SRC
1660
1661 ** C & C++
1662 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1663   (setq c-default-style "stroustrup"
1664         c-basic-offset 4)
1665 #+END_SRC
1666
1667 * Compile
1668 Set the environments vairables in compilation mode
1669 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1670   (use-package compile
1671     :commands compile
1672     :config
1673     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
1674     (setq compilation-auto-jump-to-first-error t)
1675     (setq compilation-auto-jump-to-next t)
1676     (setq compilation-scroll-output 'first-error))
1677
1678   ;; super-r to compile
1679   (with-eval-after-load "compile"
1680     (define-key compilation-mode-map (kbd "C-o") nil)
1681     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
1682     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
1683     (define-key compilation-mode-map (kbd "r") #'recompile))
1684 #+END_SRC
1685
1686 * Auto-Insert
1687 ** Enable auto-insert mode
1688 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1689   (auto-insert-mode t)
1690   (setq auto-insert-query nil)
1691 #+END_SRC
1692
1693 ** C++ Auto Insert
1694 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1695   (eval-after-load 'autoinsert
1696     '(define-auto-insert '("\\.cpp\\'" . "C++ skeleton")
1697        '(
1698          "Short description:"
1699          "/*"
1700          "\n * " (file-name-nondirectory (buffer-file-name))
1701          "\n */" > \n \n
1702          "#include <iostream>" \n
1703          "#include \""
1704          (file-name-sans-extension
1705           (file-name-nondirectory (buffer-file-name)))
1706          ".hpp\"" \n \n
1707          "using namespace std;" \n \n
1708          "int main ()"
1709          "\n{" \n 
1710          > _ \n
1711          "return 1;"
1712          "\n}" > \n
1713          )))
1714
1715   (eval-after-load 'autoinsert
1716     '(define-auto-insert '("\\.c\\'" . "C skeleton")
1717        '(
1718          "Short description:"
1719          "/*\n"
1720          " * " (file-name-nondirectory (buffer-file-name)) "\n"
1721          " */" > \n \n
1722          "#include <stdio.h>" \n
1723          "#include \""
1724          (file-name-sans-extension
1725           (file-name-nondirectory (buffer-file-name)))
1726          ".h\"" \n \n
1727          "int main ()\n"
1728          "{" \n
1729          > _ \n
1730          "return 1;\n"
1731          "}" > \n
1732          )))
1733 #+END_SRC
1734
1735 ** Python template
1736 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1737   (eval-after-load 'autoinsert
1738     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
1739        '(
1740          "Empty"
1741          "#import os,sys" \n
1742          \n \n
1743          )))
1744 #+END_SRC
1745
1746 ** Elisp 
1747 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
1748 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
1749 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1750   (eval-after-load 'autoinsert
1751     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
1752        '(
1753          "Short description: "
1754          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
1755          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
1756          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
1757          "\n
1758   ;; Copyright (C) " (format-time-string "%Y") "  "
1759          (getenv "ORGANIZATION") | (progn user-full-name) "
1760
1761   ;; Author: " (user-full-name)
1762          '(if (search-backward "&" (line-beginning-position) t)
1763               (replace-match (capitalize (user-login-name)) t t))
1764          '(end-of-line 1) " <" (progn user-mail-address) ">
1765   ;; Keywords: "
1766          '(require 'finder)
1767          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
1768          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
1769                            finder-known-keywords)
1770                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
1771                               finder-known-keywords
1772                               "\n"))
1773          ((let ((minibuffer-help-form v2))
1774             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
1775           str ", ") & -2 "
1776
1777   \;; This program is free software; you can redistribute it and/or modify
1778   \;; it under the terms of the GNU General Public License as published by
1779   \;; the Free Software Foundation, either version 3 of the License, or
1780   \;; (at your option) any later version.
1781
1782   \;; This program is distributed in the hope that it will be useful,
1783   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
1784   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1785   \;; GNU General Public License for more details.
1786
1787   \;; You should have received a copy of the GNU General Public License
1788   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
1789
1790   \;;; Commentary:
1791
1792   \;; " _ "
1793
1794   \;;; Code:
1795
1796
1797   \(provide '"
1798          (file-name-base)
1799          ")
1800   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
1801 #+END_SRC
1802
1803 ** Org file template
1804 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1805   (eval-after-load 'autoinsert
1806     '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
1807        '(
1808          "title: "
1809          "#+TITLE: " str (make-string 30 ?\s) > \n
1810          "#+AUTHOR: Peng Li\n"
1811          "#+EMAIL: seudut@gmail.com\n"
1812          "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
1813          > \n
1814          > _)))
1815 #+END_SRC
1816
1817 * Markdown mode
1818 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1819   (use-package markdown-mode
1820     :ensure t
1821     :commands (markdown-mode gfm-mode)
1822     :mode (("README\\.md\\'" . gfm-mode)
1823            ("\\.md\\'" . markdown-mode)
1824            ("\\.markdown\\'" . markdown-mode))
1825     :init (setq markdown-command "multimarkdown"))
1826 #+END_SRC
1827
1828 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1829   (use-package markdown-preview-eww
1830     :ensure t)
1831 #+END_SRC
1832
1833 * Gnus
1834 ** Gmail setting 
1835 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
1836 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1837   (setq user-mail-address "seudut@gmail.com"
1838         user-full-name "Peng Li")
1839
1840   (setq gnus-select-method
1841         '(nnimap "gmail"
1842                  (nnimap-address "imap.gmail.com")
1843                  (nnimap-server-port "imaps")
1844                  (nnimap-stream ssl)))
1845
1846   (setq smtpmail-smtp-service 587
1847         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
1848
1849   ;; Use gmail sending mail
1850   (setq message-send-mail-function 'smtpmail-send-it
1851         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
1852         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
1853         smtpmail-default-smtp-server "smtp.gmail.com"
1854         smtpmail-smtp-server "smtp.gmail.com"
1855         smtpmail-smtp-service 587
1856         starttls-use-gnutls t)
1857 #+END_SRC
1858
1859 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
1860 and =<PASSWORD>= with the password
1861 #+BEGIN_EXAMPLE
1862   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
1863   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
1864 #+END_EXAMPLE
1865
1866 Then Run =M-x gnus=
1867
1868 ** Group buffer
1869 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1870   (use-package gnus
1871     :init
1872     (setq gnus-permanently-visible-groups "\.*")
1873     :config
1874     (cond (window-system
1875            (setq custom-background-mode 'light)
1876            (defface my-group-face-1
1877              '((t (:foreground "Red" :bold t))) "First group face")
1878            (defface my-group-face-2
1879              '((t (:foreground "DarkSeaGreen4" :bold t)))
1880              "Second group face")
1881            (defface my-group-face-3
1882              '((t (:foreground "Green4" :bold t))) "Third group face")
1883            (defface my-group-face-4
1884              '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
1885            (defface my-group-face-5
1886              '((t (:foreground "Blue" :bold t))) "Fifth group face")))
1887     (setq gnus-group-highlight
1888           '(((> unread 200) . my-group-face-1)
1889             ((and (< level 3) (zerop unread)) . my-group-face-2)
1890             ((< level 3) . my-group-face-3)
1891             ((zerop unread) . my-group-face-4)
1892             (t . my-group-face-5))))
1893
1894
1895   ;; key-
1896   (add-hook 'gnus-group-mode-hook (lambda ()
1897                                     (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
1898                                     (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
1899                                     (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
1900                                     (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
1901 #+END_SRC
1902
1903 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1904   (setq gnus-fetch-old-headers 't)
1905
1906
1907
1908   (setq gnus-extract-address-components
1909         'mail-extract-address-components)
1910   ;; summary buffer 
1911   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
1912   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
1913                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
1914                                       (604800 . "%a, %b %-d")
1915                                       (15778476 . "%b %-d")
1916                                       (t . "%Y-%m-%d")))
1917
1918   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
1919   (setq gnus-unread-mark ?\.)
1920   (setq gnus-use-correct-string-widths t)
1921
1922   ;; thread
1923   (setq gnus-thread-hide-subtree t)
1924
1925   ;; (with-eval-after-load 'gnus-summary-mode
1926   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
1927
1928   (add-hook 'gnus-summary-mode-hook (lambda ()
1929                                       (define-key gnus-summary-mode-map (kbd "C-o") nil)))
1930
1931
1932 #+END_SRC
1933
1934 ** Windows layout
1935 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
1936 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1937   (gnus-add-configuration
1938    '(summary
1939      (horizontal 1.0
1940                  (vertical 35
1941                            (group 1.0))
1942                  (vertical 1.0
1943                            (summary 1.0 poine)))))
1944
1945   (gnus-add-configuration
1946    '(article
1947      (horizontal 1.0
1948                  (vertical 35
1949                            (group 1.0))
1950                  (vertical 1.0
1951                            (summary 0.50 point)
1952                            (article 1.0)))))
1953
1954   (with-eval-after-load 'gnus-group-mode
1955     (gnus-group-select-group "INBOX"))
1956   ;; (add-hook 'gnus-group-mode-map (lambda ()
1957   ;;                               (gnus-group-select-group "INBOX")))
1958 #+END_SRC
1959
1960 * Gnu Plot
1961 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=
1962 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1963   (use-package gnuplot
1964     :ensure
1965     :init
1966     (setq gnuplot-help-xpm nil)
1967     (setq gnuplot-line-xpm nil)
1968     (setq gnuplot-region-xpm nil)
1969     (setq gnuplot-buffer-xpm nil)
1970     (setq gnuplot-doc-xpm nil))
1971 #+END_SRC
1972
1973 Use =gnuplot= on =Org-mode= file, see [[http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-gnuplot.html][ob-doc-gnuplot]]
1974 #+BEGIN_SRC gnuplot :exports code :file ./temp/file.png
1975   reset
1976
1977   set title "Putting it All Together"
1978
1979   set xlabel "X"
1980   set xrange [-8:8]
1981   set xtics -8,2,8
1982
1983
1984   set ylabel "Y"
1985   set yrange [-20:70]
1986   set ytics -20,10,70
1987
1988   f(x) = x**2
1989   g(x) = x**3
1990   h(x) = 10*sqrt(abs(x))
1991
1992   plot f(x) w lp lw 1, g(x) w p lw 2, h(x) w l lw 3
1993 #+END_SRC
1994
1995 #+RESULTS:
1996 [[file:./temp/file.png]]
1997 * Ediff
1998 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1999   (with-eval-after-load 'ediff
2000     (setq ediff-split-window-function 'split-window-horizontally)
2001     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
2002     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
2003     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
2004     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
2005 #+END_SRC
2006
2007 * Entertainment
2008 ** GnoGo
2009 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
2010 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2011   (use-package gnugo
2012     :ensure t
2013     :defer t
2014     :init
2015     (require 'gnugo-imgen)
2016     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
2017     (add-hook 'gnugo-start-game-hook '(lambda ()
2018                                         (gnugo-image-display-mode)
2019                                         (gnugo-grid-mode)))
2020     :config
2021     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
2022 #+END_SRC
2023
2024 ** Emms
2025 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
2026 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2027   (use-package emms
2028     :ensure t
2029     :init
2030     (setq emms-directory (concat sd-temp-directory "emms"))
2031     (setq emms-source-file-default-directory "~/Music/")
2032     :config
2033     (emms-standard)
2034     (emms-default-players)
2035     (define-emms-simple-player mplayer '(file url)
2036       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
2037                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
2038                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
2039                     ".m4a" ".flv" ".ogv" ".pls"))
2040       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
2041     (emms-history-load))
2042 #+END_SRC
2043
2044 * Dictionary
2045 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2046   (use-package bing-dict
2047     :ensure t
2048     :init
2049     (global-set-key (kbd "s-d") 'bing-dict-brief)
2050     :commands (bing-dict-brief))
2051 #+END_SRC
2052
2053 * Key Bindings
2054 Here are some global key bindings for basic editting
2055 ** Esc in minibuffer
2056 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
2057 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2058   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
2059   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
2060   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
2061   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
2062   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
2063   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
2064   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
2065   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
2066   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
2067
2068   ;; Also map s-h same as C-g
2069   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
2070 #+END_SRC
2071
2072 ** Project operations - =super=
2073 *** Projectile
2074 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2075   (use-package projectile
2076     :ensure t
2077     :init
2078     (setq projectile-enable-caching t)
2079     (setq projectile-cache-file (concat sd-temp-directory "projectile.cache"))
2080     :config
2081     (add-to-list 'projectile-globally-ignored-files "GTAGS")
2082     (projectile-global-mode t))
2083
2084   (use-package persp-projectile
2085     :ensure t
2086     :config
2087     (persp-mode)
2088     :bind
2089     (:map projectile-mode-map
2090           ("s-t" . projectile-persp-switch-project)))
2091
2092   ;; projectile-find-file
2093   ;; projectile-switch-buffer
2094   ;; projectile-find-file-other-window
2095 #+END_SRC
2096
2097 *** project config =super= keybindings
2098 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2099   ;; (global-set-key (kbd "s-h") 'keyboard-quit)
2100   ;; (global-set-key (kbd "s-j") 'ido-switch-buffer)
2101   ;; (global-set-key (kbd "s-k") 'ido-find-file)
2102   ;; (global-set-key (kbd "s-l") 'sd/delete-current-window)
2103   ;; s-l  -->  goto-line
2104   ;; (global-set-key (kbd "s-/") 'swiper)
2105   ;; s-;  -->
2106   ;; s-'  -->  'next-multiframe-window
2107   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
2108
2109   (global-set-key (kbd "s-f") 'projectile-find-file)
2110   (global-set-key (kbd "s-`") 'mode-line-other-buffer)
2111
2112   (global-set-key (kbd "s-n") 'persp-next)
2113   (global-set-key (kbd "s-p") 'persp-prev)
2114
2115   (global-set-key (kbd "s-=") 'text-scale-increase)
2116   (global-set-key (kbd "s--") 'text-scale-decrease)
2117
2118   ;; (global-set-key (kbd "s-u") 'undo-tree-visualize)
2119
2120
2121   ;; someothers default mapping on super (command) key
2122   ;; s-s save-buffer
2123   ;; s-k kill-this-buffer
2124
2125
2126   ;; s-h  -->  ns-do-hide-emacs
2127   ;; s-j  -->  ido-switch-buffer  +
2128   ;; s-k  -->  kill-this-buffer
2129   ;; s-l  -->  goto-line
2130   ;; s-;  -->  undefined
2131   ;; s-'  -->  next-multiframe-window
2132   ;; s-ret --> toggle-frame-fullscreen +
2133
2134   ;; s-y  -->  ns-paste-secondary
2135   ;; s-u  -->  revert-buffer
2136   ;; s-i  -->  undefined - but used for iterm globally
2137   ;; s-o  -->  used for emacs globally
2138   ;; s-p  -->  projectile-persp-switch-project  +  
2139   ;; s-[  -->  next-buffer  +    
2140   ;; s-]  -->  previous-buffer +
2141
2142   ;; s-0  -->  undefined
2143   ;; s-9  -->  undefined
2144   ;; s-8  -->  undefined
2145   ;; s-7  -->  undefined
2146   ;; s-6  -->  undefined
2147   ;; s--  -->  center-line
2148   ;; s-=  -->  undefined
2149
2150   ;; s-n  -->  make-frame
2151   ;; s-m  -->  iconify-frame
2152   ;; s-b  -->  undefined
2153   ;; s-,  -->  customize
2154   ;; s-.  -->  undefined
2155   ;; s-/  -->  undefined
2156
2157   ;; s-g  -->  isearch-repeat-forward
2158   ;; s-f  -->  projectile-find-file   +
2159   ;; s-d  -->  isearch-repeat-background
2160   ;; s-s  -->  save-buffer
2161   ;; s-a  -->  make-whole-buffer
2162
2163   ;; s-b  -->  undefined
2164   ;; s-v  -->  yank
2165   ;; s-c  -->  ns-copy-including-secondary
2166
2167   ;; s-t  -->  ns-popup-font-panel
2168   ;; s-r  -->  undefined
2169   ;; s-e  -->  isearch-yanqk-kill
2170   ;; s-w  -->  delete-frame
2171   ;; s-q  -->  same-buffers-kill-emacs
2172
2173   ;; s-`  -->  other-frame
2174 #+END_SRC
2175
2176 ** Windown & Buffer - =C-o=
2177 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
2178 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
2179 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2180   (winner-mode 1)
2181
2182   (defun sd/delete-current-window ()
2183     (interactive)
2184     (if (> (length (window-list)) 1)
2185         (delete-window)
2186       (message "Only one Windows now!")))
2187
2188   (defun sd/toggle-max-windows ()
2189     "Set maximize current if there are multiple windows, if only
2190   one window, window undo"
2191     (interactive)
2192     (if (equal  (length (window-list)) 1)
2193         (winner-undo)
2194       (delete-other-windows)))
2195
2196   (defhydra sd/hydra-window (:color red :columns nil)
2197     "Window"
2198     ;; windows split
2199     ("h" windmove-left nil :exit t)
2200     ("j" windmove-down nil :exit t)
2201     ("k" windmove-up nil :exit t)
2202     ("l" windmove-right nil :exit t)
2203     ("H" hydra-move-splitter-left nil)
2204     ("J" hydra-move-splitter-down nil)
2205     ("K" hydra-move-splitter-up nil)
2206     ("L" hydra-move-splitter-right nil)
2207     ("v" (lambda ()
2208            (interactive)
2209            (split-window-right)
2210            (windmove-right))
2211      "vert" :exit t)
2212     ("x" (lambda ()
2213            (interactive)
2214            (split-window-below)
2215            (windmove-down))
2216      "horz" :exit t)
2217
2218     ;; buffer / windows switch
2219     ("o" sd/toggle-max-windows "one" :exit t)
2220     ("C-k" sd/delete-current-window "del" :exit t)
2221     ("'" other-window "other" :exit t)
2222     ;; ("a" ace-window "ace")
2223     ("s" ace-swap-window "swap")
2224     ;; ("i" ace-maximize-window "ace-one" :exit t)
2225
2226     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) "undo")
2227     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) "redo")
2228
2229     ;; ibuffer, dired, eshell, bookmarks
2230     ;; ("d" ace-delete-window "ace-one" :exit t)
2231     ("C-o" ido-switch-buffer nil :exit t)
2232     ("d" dired-jump nil :exit t)
2233     ("b" ibuffer nil n:exit t)
2234     ("e" eshell nil :exit t)
2235     ("m" bookmark-jump-other-window nil :exit t)
2236     ("M" bookmark-set nil :exit t)
2237     ("g" magit-status nil :exit t)
2238     ("p" paradox-list-packages nil :exit t)
2239
2240     ;; quit
2241     ("q" nil "cancel")
2242     ("<ESC>" nil)
2243     ("C-h" nil nil :exit t)
2244     ("C-j" nil nil :exit t)
2245     ;; ("C-k" nil :exit t)
2246     ("C-l" nil nil :exit t)
2247     ("C-;" nil nil :exit t)
2248     ("n" nil nil :exit t)
2249     ("[" nil nil :exit t)
2250     ("]" nil nil :exit t)
2251     ("f" nil))
2252
2253   (global-unset-key (kbd "C-o"))
2254   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
2255 #+END_SRC
2256
2257 ** Motion
2258 - =C-M-=
2259 [[https://www.masteringemacs.org/article/effective-editing-movement][effective-editing-movement]]
2260 *** Command Arguments, numeric argumens
2261 =C-u 4= same as =C-4=, =M-4=
2262 *** Basic movement
2263 moving by line / word / 
2264 =C-f=, =C-b=, =C-p=, =C-n=, =M-f=, =M-b=
2265 =C-a=, =C-e=
2266 =M-m= (move first non-whitespace on this line) 
2267 =M-}=, =M-{=, Move forward end of paragraph
2268 =M-a=, =M-e=,  beginning / end of sentence
2269 =C-M-a=, =C-M-e=, move begining of defun
2270 =C-x ]=, =C-x [=, forward/backward one page
2271 =C-v=, =M-v=, =C-M-v=, =C-M-S-v= scroll down/up
2272 =M-<=, =M->=, beginning/end of buffer
2273 =M-r=, Repositiong point
2274
2275 *** Moving by S-expression / List
2276 *** Marks
2277 =C-<SPC>= set marks toggle the region
2278 =C-u C-<SPC>= Jump to the mark, repeated calls go further back the mark ring
2279 =C-x C-x= Exchanges the point and mark.
2280
2281 Stolen [[https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode][fixing-mark-commands-transient-mark-mode]]
2282 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2283   (defun push-mark-no-activate ()
2284     "Pushes `point' to `mark-ring' and does not activate the region
2285      Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
2286     (interactive)
2287     (push-mark (point) t nil)
2288     (message "Pushed mark to ring"))
2289
2290   ;; (global-set-key (kbd "C-`") 'push-mark-no-activate)
2291
2292   (defun jump-to-mark ()
2293     "Jumps to the local mark, respecting the `mark-ring' order.
2294     This is the same as using \\[set-mark-command] with the prefix argument."
2295     (interactive)
2296     (set-mark-command 1))
2297
2298   ;; (global-set-key (kbd "M-`") 'jump-to-mark)
2299
2300   (defun exchange-point-and-mark-no-activate ()
2301     "Identical to \\[exchange-point-and-mark] but will not activate the region."
2302     (interactive)
2303     (exchange-point-and-mark)
2304     (deactivate-mark nil))
2305
2306   ;; (define-key global-map [remap exchange-point-and-mark] 'exchange-point-and-mark-no-activate)
2307 #+END_SRC
2308
2309 Show the mark ring using =helm-mark-ring=, also mapping =M-`= to quit minibuffer. so that =M-`= can 
2310 toggle the mark ring. the best way is add a new action and mapping to =helm-source-mark-ring=,  but 
2311 since there is no map such as =helm-mark-ring=map=, so I cannot binding a key to the quit action.
2312 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2313   (setq mark-ring-max 50)
2314
2315   (use-package helm
2316     :ensure t
2317     :init
2318     (global-set-key (kbd "M-`") #'helm-mark-ring))
2319
2320   (define-key minibuffer-local-map (kbd "M-`") 'keyboard-escape-quit)
2321 #+END_SRC
2322
2323 =M-h= marks the next paragraph
2324 =C-x h= marks the whole buffer
2325 =C-M-h= marks the next defun
2326 =C-x C-p= marks the next page
2327 *** Registers
2328 Registers can save text, position, rectangles, file and configuration and other things.
2329 Here for movement, we can use register to save/jump position
2330 =C-x r SPC= store point in register
2331 =C-x r j= jump to register
2332 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2333   (use-package list-register
2334     :ensure t)
2335 #+END_SRC
2336
2337 *** Bookmarks
2338 As I would like use bookmakr for different buffer/files. to help to swith
2339 different buffer/file quickly. this setting is in Windows/buffer node
2340 =C-x r m= set a bookmarks
2341 =C-x r l= list bookmarks
2342 =C-x r b= jump to bookmarks
2343
2344 *** Search
2345 Search, replace and hightlight will in later paragraph
2346 *** =Avy= for easy motion
2347 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2348   (use-package avy
2349     :ensure t
2350     :config
2351     (avy-setup-default))
2352
2353   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
2354   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
2355   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
2356   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
2357
2358   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
2359   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
2360
2361   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2362   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
2363   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
2364
2365   ;; ;; will delete above 
2366   ;; (global-set-key (kbd "M-g j") 'avy-goto-line-below)
2367   ;; (global-set-key (kbd "M-g k") 'avy-goto-line-above)
2368   ;; (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
2369   ;; (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
2370   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2371   ;; (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
2372   ;; (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
2373 #+END_SRC
2374
2375 *** =Imenu= goto tag
2376 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2377   (global-set-key (kbd "M-i") #'counsel-imenu)
2378   ;; (global-set-key (kbd "M-i") #'imenu)
2379 #+END_SRC
2380
2381 *** Go-to line
2382 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2383   (global-set-key (kbd "M-l") 'goto-line)
2384 #+END_SRC
2385
2386 ** Edit
2387 *** basic editting
2388 - cut, yank, =C-w=, =C-y=
2389 - save, revert
2390 - undo, redo - undo-tree
2391 - select, expand-region
2392 - spell check, flyspell
2393
2394 *** Kill ring
2395 =helm-show-kill-ring=
2396 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2397   (setq kill-ring-max 100)                ; default is 60p
2398
2399   (use-package helm
2400     :ensure t
2401     :init
2402     (global-set-key (kbd "M-y") #'helm-show-kill-ring))
2403 #+END_SRC
2404
2405 *** undo-tree
2406 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2407   (use-package undo-tree
2408     :ensure t
2409     :config
2410     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
2411     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
2412     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
2413     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
2414     (global-undo-tree-mode 1))
2415
2416   (global-set-key (kbd "s-u") 'undo-tree-visualize)
2417 #+END_SRC
2418
2419 *** flyspell
2420 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
2421 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2422   (setenv "DICPATH" "/usr/local/share/hunspell")
2423
2424   (when (executable-find "hunspell")
2425     (setq-default ispell-program-name "hunspell")
2426     (setq ispell-really-hunspell t))
2427
2428   ;; (defun text-mode-hook-setup ()
2429   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
2430   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
2431   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
2432   ;; (add-hook 'text-mode-hook 'flyspell-mode)
2433
2434   ;; enable flyspell check on comments and strings in progmamming modes
2435   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
2436
2437   ;; I don't use the default mappings
2438   (with-eval-after-load 'flyspell
2439     (define-key flyspell-mode-map (kbd "C-;") nil)
2440     (define-key flyspell-mode-map (kbd "C-,") nil)
2441     (define-key flyspell-mode-map (kbd "C-.") nil))
2442 #+END_SRC
2443
2444 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]]
2445 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2446   ;; NO spell check for embedded snippets
2447   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
2448     (let ((rlt ad-return-value)
2449           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
2450           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
2451           old-flag
2452           b e)
2453       (when ad-return-value
2454         (save-excursion
2455           (setq old-flag case-fold-search)
2456           (setq case-fold-search t)
2457           (setq b (re-search-backward begin-regexp nil t))
2458           (if b (setq e (re-search-forward end-regexp nil t)))
2459           (setq case-fold-search old-flag))
2460         (if (and b e (< (point) e)) (setq rlt nil)))
2461       (setq ad-return-value rlt)))
2462 #+END_SRC
2463
2464 ** Search & Replace / hightlight =M-s=
2465 *** isearch
2466 =C-s=, =C-r=, 
2467 =C-w= add word at point to search string, 
2468 =M-%= query replace
2469 =C-M-y= add character at point to search string
2470 =M-s C-e= add reset of line at point
2471 =C-y= yank from clipboard to search string
2472 =M-n=, =M-p=, history
2473 =C-M-i= complete search string
2474 set the isearch history size, the default is only =16=
2475 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2476   (setq history-length 5000)
2477   (setq regexp-search-ring-max 1000)
2478   (setq search-ring-max 1000)
2479
2480   ;; when search a word or a symbol , also add the word into regexp-search-ring
2481   (defadvice isearch-update-ring (after sd/isearch-update-ring (string &optional regexp) activate)
2482     "Add search-ring to regexp-search-ring"
2483     (unless regexp
2484       (add-to-history 'regexp-search-ring string regexp-search-ring-max)))
2485 #+END_SRC
2486
2487 *** =M-s= prefix
2488 use the prefix =M-s= for searching in buffers
2489 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2490   (defun sd/make-keymap (key bindings)
2491     (setq keymap (make-sparse-keymap))
2492     (dolist (binding bindings)
2493       (define-key keymap (car binding) (cdr binding)))
2494     (global-set-key key keymap))
2495
2496   ;; (sd/make-keymap "\M-s"
2497   ;;                 '(("w" . save-buffer)
2498   ;;                   ;; ("\M-w" . save-buffer)
2499   ;;                   ("e" . revert-buffer)
2500   ;;                   ("s" . isearch-forward-regexp)
2501   ;;                   ("\M-s" . isearch-forward-regexp)
2502   ;;                   ("r" . isearch-backward-regexp)
2503   ;;                   ("." . isearch-forward-symbol-at-point)
2504   ;;                   ("o" . occur)
2505   ;;                   ;; ("h" . highlight-symbol-at-point)
2506   ;;                   ("h" . highlight-symbol)
2507   ;;                   ("m" . highlight-regexp)
2508   ;;                   ("l" . highlight-lines-matching-regexp)
2509   ;;                   ("M" . unhighlight-regexp)
2510   ;;                   ("f" . keyboard-quit)
2511   ;;                   ("q" . keyboard-quit)))
2512 #+END_SRC
2513
2514 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2515   (use-package highlight-symbol
2516     :ensure t)
2517
2518   (defhydra sd/search-replace (:color red :columns nil)
2519     "Search"
2520     ("w" save-buffer "save" :exit t)
2521     ("e" revert-buffer "revert" :exit t)
2522     ("u" undo-tree-visualize "undo" :exit t)
2523     ("s" isearch-forward-regexp "s-search" :exit t)
2524     ("M-s" isearch-forward-regexp "s-search" :exit t)
2525     ("r" isearch-backward-regexp "r-search" :exit t)
2526     ("." isearch-forward-symbol-at-point "search point" :exit t)
2527     ("/" swiper "swiper" :exit t)
2528     ("o" occur "occur" :exit t)
2529     ("h" highlight-symbol "higlight" :exit t)
2530     ("l" highlight-lines-matching-regexp "higlight line" :exit t)
2531     ("m" highlight-regexp "higlight" :exit t)
2532     ("M" unhighlight-regexp "unhiglight" :exit t)
2533     ("q" nil "quit")
2534     ("f" nil))
2535
2536   (global-unset-key (kbd "M-s"))
2537   (global-set-key (kbd "M-s") 'sd/search-replace/body)
2538
2539
2540   ;; search and replace and highlight
2541   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
2542   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
2543   (global-set-key (kbd "s-[") 'highlight-symbol-next)
2544   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
2545   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
2546 #+END_SRC
2547
2548 *** Occur
2549 Occur search key bindings
2550 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2551   (defun sd/occur-keys ()
2552     "My key bindings in occur-mode"
2553     (interactive)
2554     (switch-to-buffer-other-window "*Occur*")
2555     (define-key occur-mode-map (kbd "C-o") nil)
2556     (define-key occur-mode-map (kbd "C-n") (lambda ()
2557                                              (interactive)
2558                                              (occur-next)
2559                                              (occur-mode-goto-occurrence-other-window)
2560                                              (recenter)
2561                                              (other-window 1)))
2562     (define-key occur-mode-map (kbd "C-p") (lambda ()
2563                                              (interactive)
2564                                              (occur-prev)
2565                                              (occur-mode-goto-occurrence-other-window)
2566                                              (recenter)
2567                                              (other-window 1))))
2568
2569   (add-hook 'occur-hook #'sd/occur-keys)
2570
2571   (use-package color-moccur
2572     :ensure t
2573     :commands (isearch-moccur isearch-all)
2574     :init
2575     (setq isearch-lazy-highlight t)
2576     :config
2577     (use-package moccur-edit))
2578 #+END_SRC
2579
2580 *** Swiper
2581 stolen from [[https://github.com/mariolong/emacs.d/blob/f6a061594ef1b5d1f4750e9dad9dc97d6e122840/emacs-init.org][here]]
2582 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2583   (use-package swiper
2584     :ensure t
2585     :init
2586     (setq ivy-use-virtual-buffers t)
2587     (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
2588     :config
2589     (ivy-mode)
2590     (global-set-key (kbd "s-/") 'swiper)
2591     (define-key swiper-map (kbd "M-r") 'swiper-query-replace)
2592     (define-key swiper-map (kbd "C-.") (lambda ()
2593                                          (interactive)
2594                                          (insert (format "%s" (with-ivy-window (thing-at-point 'word))))))
2595     (define-key swiper-map (kbd "M-.") (lambda ()
2596                                          (interactive)
2597                                          (insert (format "%s" (with-ivy-window (thing-at-point 'symbol)))))))
2598 #+END_SRC
2599
2600 ** Expand region map
2601 *** Install =expand-region=
2602 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2603   (use-package expand-region
2604     :ensure t
2605     :config
2606     ;; (global-set-key (kbd "C-=") 'er/expand-region)
2607     )
2608 #+END_SRC
2609
2610 *** Add a =hydra= map for =expand-region= operations
2611 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2612   (defun sd/mark-line ()
2613     "Mark current line without whitespace beginning"
2614     (interactive)
2615     (back-to-indentation)
2616     (set-mark (line-end-position)))
2617
2618   (defhydra sd/expand-selected (:color red :columns nil
2619                                        :post (deactivate-mark)
2620                                        )
2621     "Selected"
2622     ;; select
2623     ;; ("e"  er/expand-region "+")
2624     ("SPC" er/expand-region "+")
2625     ;; ("c"  er/contract-region "-")
2626     ("S-SPC" er/contract-region "-")
2627     ("r" (lambda ()
2628            (interactive)
2629            (er/contract-region 0))
2630      "reset")
2631
2632     ("i'" er/mark-inside-quotes "in")
2633     ("i\"" er/mark-inside-quotes nil)
2634     ("o'" er/mark-outside-quotes "out")
2635     ("o\"" er/mark-outside-quotes nil)
2636
2637     ("i{" er/mark-inside-pairs nil)
2638     ("i(" er/mark-inside-pairs nil)
2639     ("o{" er/mark-inside-pairs nil)
2640     ("o(" er/mark-inside-pairs nil)
2641
2642     ("p" er/mark-paragraph "paragraph")
2643
2644     ("l" sd/mark-line "line")
2645     ("u" er/mark-url "url")
2646     ("f" er/mark-defun "fun")
2647     ("n" er/mark-next-accessor "next")
2648
2649     ("x" exchange-point-and-mark "exchange")
2650
2651     ;; Search
2652     ;; higlight
2653
2654     ;; exit
2655     ("d" kill-region "delete" :exit t)
2656
2657     ("y" kill-ring-save "yank" :exit t)
2658     ("M-SPC" nil "quit" :exit t)
2659     ;; ("C-SPC" "quit" :exit t)
2660     ("q" deactivate-mark "quit" :exit t))
2661
2662   (global-set-key (kbd "M-SPC") (lambda ()
2663                                   (interactive)
2664                                   (set-mark-command nil)
2665                                   ;; (er/expand-region 1)
2666                                   (er/mark-word)
2667                                   (sd/expand-selected/body)))
2668 #+END_SRC
2669
2670 *** TODO make expand-region hydra work with lispy selected
2671
2672 * TODO Convert ASCII to key
2673 ** map =function-key-map= [[http://academic.evergreen.edu/projects/biophysics/technotes/program/ascii_ctrl.htm][ascii_ctrl]]
2674 new file =C-x C-f C-f=
2675
2676 ** write color syntax for =Man-mode=
2677
2678 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2679   (font-lock-add-keywords 'perl-mode '(("\\(|\\w+?\\(,\\w+?\\)?|\\)" 1 'py-builtins-face)))
2680 #+END_SRC
2681
2682 * TODO jump last change point
2683 * TODO emms mode-line
2684
2685 * =C-u C-h a= search funtions 
2686 =apropos-command= 
2687
2688 * key
2689 - passion
2690 - vision
2691 - mission
2692
2693 * M prefix
2694 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2695
2696   ;; M-h - mark-paragraph
2697   ;; M-j - new line indent
2698   ;; M-k - kill-sentence
2699   ;; M-l - downcase words     ====== goto-line
2700   ;; M-; - comments
2701   ;; M-'- abbrev-prefix-mark  =======
2702   ;; M-RET none                ======
2703
2704   ;; M-y - yank
2705   ;; M-u - upcase word
2706   ;; M-i -                 ====== imenu
2707   ;; M-o             ====== prefix
2708   ;; M-p
2709   ;; M-[                   =====
2710   ;; M-]              ========
2711   ;; M-\   deleter horizontal space =====
2712
2713   ;; M-n 
2714   ;; M-m ---- indent
2715   ;; M-, --- mark stack====== =
2716   ;; M-. lisp-goto-symboo, find definitation
2717
2718   ;; M-a 
2719   ;; M-s ===== 
2720   ;; M-d
2721   ;; M-f
2722   ;; M-g - prefix
2723
2724   ;; M-q - lisp fill, fill paragraph
2725   ;; M-w 
2726   ;; M-e
2727   ;; M-r  - rePositioning 
2728   ;; M-t transpose word 
2729
2730   ;; M-z zap-to-char
2731   ;; M-x
2732   ;; M-c  capitalize-word
2733   ;; M-v 
2734   ;; M-b 
2735 #+END_SRC
2736