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