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