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